function popupImage(url, iInHeight, iInWidth) {

	if ( typeof(iInWidth) == "undefined" ) iInWidth = 1024;
	if ( typeof(iInHeight) == "undefined" ) iInHeight = 650;
	if ( typeof(sInName) == "undefined" ) sInName = "_blank";

	if ( typeof(iTop) == "undefined" ) iTop = (document.body.offsetHeight) / 2 - ( iInHeight / 2 );
	if ( typeof(iLeft) == "undefined" ) iLeft = (document.body.offsetWidth) / 2 - ( iInWidth / 2 );
	
	var oPopup;

	oPopup = window.open("about:blank", sInName,'top='+iTop+',left='+iLeft+',height='+iInHeight+',width='+iInWidth+',resizable=no,scrollbars=no,status=no,toolbar=no,menubar=no,location=no');
	oPopup.document.writeln("<html><head><title>Αγοράζω Online Ο.Ε.</title>");
	oPopup.document.writeln("<style type='text/css' media='print'><!--body{display:none}--></style>");
//	oPopup.document.writeln("<scr"+"ipt language='javascript' src='includes/imgProtect.js'></scr"+"ipt>");
	oPopup.document.writeln("<link rel='stylesheet' type='text/css' href='templates/fallback/stylesheet.css'>");
		
	oPopup.document.writeln("</head><body>");

	oPopup.document.writeln("<div align='center' style='position:absolute;z-index:1000'>");
	oPopup.document.writeln("	<a href='javascript:window.close();'>");
	oPopup.document.writeln("	<span class='smallText' align='center'>Κλείσιμο</span>");
	oPopup.document.writeln("	</a>");
	oPopup.document.writeln("</div>");
	oPopup.document.writeln("<div align='center' style='position:absolute;left:0px;top:0px;'>");
	oPopup.document.writeln("	<a href='javascript:window.close();'>");	
	oPopup.document.writeln("		<img src='"+url+"' width='"+iInWidth+"' height='"+iInHeight+"' border='0'>");
	oPopup.document.writeln("	</a>");
	oPopup.document.writeln("</div>");
	oPopup.document.writeln("<div align='center' style='position:absolute;left:0px;top:0px;'>");
	oPopup.document.writeln("	<a href='javascript:window.close();'>");
	oPopup.document.writeln("		<img src='/images/trans.gif' width='"+iInWidth+"0' height='"+iInHeight+"0' border='0'>");
	oPopup.document.writeln("	</a>");
	oPopup.document.writeln("</div>");
	
	oPopup.document.writeln("</body></html>");
	oPopup.focus();
}