/////////////////////////////////////////////////////
// Created by WIERZBICKI.ORG, www.mwierzbicki.org  //
/////////////////////////////////////////////////////

function openCenteredMediaWindow(url,w,h) {
/////////////////////////////////////////
	parent.mediaWindowOpen=true
	var iMyWidth;
	var iMyHeight;
	iMyWidth = (window.screen.width/2) - (w/2 + 10)
	iMyHeight = (window.screen.height/2) - (h/2 + 50)
	WinAtts='toolbar=0,location=0,directories=0,status=0,menubar=0,scrolling=auto'
	WinAtts+=',resizable=0,copyhistory=0,width='+w+',height='+h+',alwaysRaised=1'
	WinAtts+=',left='+iMyWidth+',top='+iMyHeight+',screenX='+iMyWidth+',screenY='+iMyHeight
	CenteredMediaWindow=window.open(url,'CenteredMediaWindow',WinAtts)
	parent.mediaWindowName=CenteredMediaWindow;
	CenteredMediaWindow.focus();
}



function myOpenWindow(url,winname,myWidth,myHeight) {
///////////////////////////////////////////////////
    var myLeft;
	var myTop;
	myLeft = (screen.availWidth-myWidth)/2;
	myTop = (screen.availHeight-myHeight)/2;
	WinAtts='toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes'
	WinAtts+=',resizable=yes,copyhistory=no,alwaysRaised=yes,width='+myWidth+',height='+myHeight
	WinAtts+=',screenX='+myLeft+',screenY='+myTop+',left='+myLeft+',top='+myTop
	window.open(url,winname,WinAtts)
}

function openMediaWindow(url,x0,y0) {
///////////////////////////////////
		WinAtts='toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0';
		WinAtts+=',resizable=1,copyhistory=0,width=150,height=150,alwaysRaised=1';
		if (x0!='') WinAtts+=',left='+x0+',top='+y0;
		winName="mediaWindow"
		mediaWindow=window.open(url,winName,WinAtts);
}

function popupImage(image,x,y) {
//////////////////////////////
	if (y==null) y=70;
	if (x==null) x=70
	str='../popup.php?imageFile='+image+'&lang='+lng
	str='openMediaWindow(\''+str+'\','+x+','+y+')'
	eval(str);
}
