function displayChild(page) {	
	var childWindow = document.getElementById('child');
		childWindow.src = 'child.php?mod=' + page;
}

function imgMouseOver(posLeft, posRight) {
	var imgO = document.getElementById('imgOM');	
		//window.alert("tutaj" + imgO.top);
		imgO.style.left = posLeft + 'px';
		imgO.style.top	= posRight + 'px';
		imgO.style.visibility = 'visible';
		
}

function imgMouseOut() {
	var imgO = document.getElementById('imgOM');
		imgO.style.left = '0px';
		imgO.style.top	= '0px';
		imgO.style.visibility = 'hidden';
}
function pageLink(page) {
	return false;
}

function showPicture(sTitle, mTop, mLeft, pWidth, pHeight, pUrl) {
		var paramteres = 'scrollbars="no",resizable=no,history=no,menubar=no,top='+mTop+',left='+mLeft+',width='+pWidth+',height='+pHeight;
		var winImage=open("winImage","winImage",paramteres);	
			
		winImage.document.write("<html><head><title>"+sTitle+"</title></head><body marginheight=0 marginwidth=0 topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0><input type=image src='" + pUrl + "' onclick=self.close();></body></html>");
		winImage.document.close();
 		winImage.focus();
	}
	
function windowOpenScrollNoResize(name, width,height,url){
	var width;
	var height;
	var name;
	parametry = 'scrollbars=yes, resizable=no, history=no, menubar=no, top=200, left=300,width=' + width + ',height=' + height;
	name=open(url,name,parametry);
	name.focus();
}	
