

var windowOpen = false;

var window1;

function openwindow(ImgName)

{

   if (windowOpen == false)

        {

        windowOpen = true;

        window1=window.open('','','resizable=no,width=850,height=865,toolbar=no,scrollbars=yes,left=0,top=0');

		window1.document.open()

		window1.document.write('<title>Diamond in a Pearl |  www.diamondinapearl.com</title>');

		window1.document.write('<link type="text/css" rel="stylesheet" href="style_gala.css">');

		window1.document.write('<body background="images/bg.jpg">');

		window1.document.write('<table width="100%"  border="0" cellpadding="0" cellspacing="0">');

		window1.document.write('<tr><td height="20" background="images/bg_welcome.gif" style="padding-left:5px; padding-right:5px;">');

		window1.document.write('<table width="100%"  border="0" cellspacing="0" cellpadding="0">');

		window1.document.write('<tr><td style="color:C7713E; Font-family:Arial; font-size:10px;"> Welcome to <strong>GalaTea Inc</strong>!</td>');

		window1.document.write('<td align="right" style="color:C7713E; Font-family:Arial; font-size:10px;"><strong>www.diamondinapearl.com</strong></td>');

		window1.document.write('</tr></table></td></tr><tr>');

		window1.document.write('<td align="center" style="padding:10px;"><img src="resize.php?from=img_upload/products/'+ImgName+'&w=800" alt="Close window" onClick="window.close(); return false;" style="border:10px solid #FFFFFF;"></td>');

		window1.document.write('</tr><tr><td align="center" height=30><a href="" onClick="window.close(); return false;"><img src="admin/images/close.gif" width="15" height="13" border=0 align="absmiddle"> Close</a></td></tr></table><script></body>');

		window1.document.close();

        }

   else if (windowOpen == true)

       	{

        window1.close();

		windowOpen = true;   

        window1=window.open('','','resizable=no,width=850,height=865,toolbar=no,scrollbars=yes,left=0,top=0');

		window1.document.open()

		window1.document.write('<title>Diamond in a Pearl |  www.diamondinapearl.com</title>');

		window1.document.write('<link type="text/css" rel="stylesheet" href="style_gala.css">');

		window1.document.write('<body background="images/bg.jpg">');

		window1.document.write('<table width="100%"  border="0" cellpadding="0" cellspacing="0">');

		window1.document.write('<tr><td height="20" background="images/bg_welcome.gif" style="padding-left:5px; padding-right:5px;">');

		window1.document.write('<table width="100%"  border="0" cellspacing="0" cellpadding="0">');

		window1.document.write('<tr><td style="color:C7713E; Font-family:Arial; font-size:10px;"> Welcome to <strong>GalaTea Inc</strong>!</td>');

		window1.document.write('<td align="right" style="color:C7713E; Font-family:Arial; font-size:10px;"><strong>www.diamondinapearl.com</strong></td>');

		window1.document.write('</tr></table></td></tr><tr>');

		window1.document.write('<td align="center" style="padding:10px;"><img src="resize.php?from=img_upload/products/'+ImgName+'&w=800" alt="Close window" onClick="window.close(); return false;" style="border:10px solid #FFFFFF;"></td>');

		window1.document.write('</tr><tr><td align="center" height=30><a href="" onClick="window.close(); return false;"><img src="admin/images/close.gif" width="15" height="13" border=0 align="absmiddle"> Close</a></td></tr></table></body>');

		window1.document.close()

	 	}

}

