var popUpWin=0;
function popUpWindow(left,top,width,height,name)
{
	if(popUpWin)
	{
		if(!popUpWin.closed) popUpWin.close();
	}
	var widthpop = width +30;
	var heightpop=height +50;
	popUpWin = open('', 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+widthpop+',height='+heightpop+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	popUpWin.document.write ("<HTML><HEAD><TITLE>Galeria</TITLE></HEAD><link rel='stylesheet' href='css/styl.css' type='text/css'><script language='javascript' src='js/windows.js'></script><BODY  bgcolor='#ffffff'>")
	popUpWin.document.write("<IMG SRC=" + name + " WIDTH="+width+" HEIGHT="+height+" BORDER='0'>");
	popUpWin.document.write("<br></br><a class='history' href='javascript:closewindow()'><b>Close</b></a>");
	popUpWin.document.write ("</BODY></HTML>");
}

function closewindow()
{

	this.close()
}
