// JavaScript Document

	function deschide(cPicture,nWidth,nHeight)
		{
		NewWindow=window.open("","NewOne","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=no,resizable=no,top=0,left=0");
		NewWindow.document.write ("<HTML><HEAD><TITLE>");
		NewWindow.document.write ("Solar Guard Systems</TITLE></HEAD>");
		NewWindow.document.write ("<BODY topmargin=\"0\" leftmargin=\"0\">");	
		NewWindow.document.write ("<div align=\"center\"><IMG SRC=");
		NewWindow.document.write (cPicture);
		NewWindow.document.write ("></div>");
		NewWindow.document.write ("</BODY></HTML>");
		NewWindow.document.write ("</BODY></HTML>");
		NewWindow.document.close();
		return false;
		}

