function preview(img,wid,hit){
	var hhit = 20 + parseInt(hit);
	var wwid = 20 + parseInt(wid);
	var result='<html><head><title>Gulf Prefab Houses Factory (L.T.D.)</title></head>'
	result+='<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>'
	result+='<table border=0 cellpadding=10 cellspacing=0>' 
	result+='<tr><td><img src="images/'+img+'" width='+wid+' height='+hit+' border=1 onClick="window.close()" alt="Click to Close"></td></tr></table>'
	result+='</body></html>';
	var windowprops="scrollbars=no,menubars=no,toolbars=no"+",width=" + wwid + ",height=" + hhit;	
	win=window.open("","preview");
	win.close();
	win=window.open("","preview",windowprops);
	win.creater=self;
	win.moveTo(20,20);
	win.focus();
	win.document.write(result);
}