﻿function openPictureWindow_Fever(imageName) {
	newWindow = window.open("","newWindow","width=760,height=760,left=10,top=10,scrollbars=no");
	newWindow.document.open();
	newWindow.document.writeln('<html>');
	newWindow.document.writeln('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">');
	newWindow.document.writeln('<title>ÜRÜN DETAY</title>');
	newWindow.document.writeln('<body bgcolor="#DADADA" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">')
	newWindow.document.writeln('<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"><tr><td align="center" valign="middle"><img src="'+imageName+'.jpg" border ="1"></td></tr>'); 
	newWindow.document.writeln('</table></body></html>');
	newWindow.document.close();
	newWindow.focus();
}
