function popUp(imageSRC, width, height)
{	var popWin;
	var tObjImage;	
	var iLeft, iTop;
	
	if (width < window.screen.availWidth)
	{	iLeft  = (window.screen.availWidth/2) - (width/2);
	}
	else
	{	iLeft = 0;
		width = window.screen.availWidth-10;
	}
	
	if (height < window.screen.availHeight)
	{	iTop  = (window.screen.availHeight/2) - (height/2);
	}	
	else
	{	iTop = 0;
		height = window.screen.availHeight-30;
	}
	
	tObjImage = new Image(width , height);
	tObjImage.src = imageSRC;
		
	popWin = window.open('about:blank', 'popUpImage', 'location=no,menubar=no,directories=no,scrollbars=no,resizable=no,status=no,width='+width+',height='+height+',left='+iLeft+',top='+iTop);

	popWin.document.write("<php>\n");
	
	popWin.document.write("<head>\n");
	popWin.document.write("<title>High Resolution Foto</title>\n");
	popWin.document.write("<style type=\"text/css\">\n");
	popWin.document.write("body {\n");
	popWin.document.write("	margin:0px;\n");
	popWin.document.write("	padding:0px;\n");
	popWin.document.write("	text-align:center\n");
	popWin.document.write("}\n");
	popWin.document.write("</style>\n");
	popWin.document.write("</head>\n");

	popWin.document.write("<body>\n");
	popWin.document.write("<center>\n");
	popWin.document.write("<img src=\""+tObjImage.src+"\" border=\"0\" width=\""+width+"\" height=\""+height+"\" />\n");
	popWin.document.write("</center>\n");
	popWin.document.write("</body>\n");
	
	popWin.document.write("</php>\n");
}
