var newwindow;

function popitup(url) {	
    newwindow=window.open("",'htmlname','width=680,height=680,resizable=1');
	newwindow.document.clear();
	newwindow.document.writeln("<html><head><title>Ashkenas Construction Projects</title><link rel='stylesheet' type='text/css' href='css/everything.css' /><script> function sizeIt(){ if(document.images[0].width > document.images[0].height){document.images[0].width = 650;}else{document.images[0].height = 650;} window.resizeTo((document.images[0].width)+60, (document.images[0].height)+100) }  </script></head><body class='popupbody'><div class='popupdiv'><div class='alpha-shadow'><div><img onLoad='javascript:sizeIt()' class='popupimage' src='"+url+"' alt='Ashkenas Construction Projects' /></div></div></div></body></html>");
	newwindow.document.close();
	newwindow.focus();
}