/* author: Jose Berbel */
/* Creation date: 6/7/2003 */
//script found on www.a1javascripts.com
//all credit to unknown author
<!-- 
function ViewImage(ipath,ptitle,pmsg){
	var NewWindow;
	var winTop = (screen.height / 2) - 275;
	var winLeft = (screen.width / 2) - 320;
	var windowFeatures = "width=600,height=480,";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop;
	newWindow = window.open("","View",windowFeatures);
	newWindow.document.write('<html><head><title>Southwest Marble and Granite</title></head><body BGCOLOR="#FFFFFF"><center><font face="Arial, Helvetica, sans-serif" size="3" color="#666666"><b>'+ptitle+'</b></font><IMG SRC="'+ ipath + '" BORDER="0"><br><font face="Arial, Helvetica, sans-serif" size="1" color="#666666"></font><br></center><form><center><input type="button" value="Close Window" onClick="javascript:window.close();"></center></form></body></html>');
    newWindow.document.close();
	}
function show_status(stat_txt){
		window.status=stat_txt;
		setTimeout("show_null()",50000);
}

function show_null(){
		window.status="";
}	
//--> 