var refW = 700;
var refH = 590;
if (screen) {
	topPos = (screen.availHeight - refH) / 2;
	leftPos = (screen.availWidth - refW) / 2;
}

function openRef(img,txt) {
	NewWindow=window.open("","popup","width="+refW+",height="+refH+",top="+topPos+",left="+leftPos);
	NewWindow.focus();
	NewWindow.document.writeln ("<html><head>");
	NewWindow.document.writeln ("<title>Spotless Renovations New York<\/title>");
	NewWindow.document.writeln ("<\/head>");
	NewWindow.document.writeln ("<body bgcolor='#ffffff' text='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
	NewWindow.document.writeln ("<div style='font-family:arial,helvetica,verdana;font-size:12px;margin:5px;color:#999999;'><strong>Project Gallery:</strong> "+txt+ "</div><div style='margin:10px 0 10px 0;'><img src='" + img + "' /></div>");
	NewWindow.document.writeln ("<div style='font-family:arial,helvetica,verdana;font-size:10px;' align='center'><a href='javascript:window.close();'>X Close Window</a></span></div>");
	NewWindow.document.writeln ("<\/body><\/html>")
	NewWindow.document.close();
	//return false;
}
