function openNew(url,name,w,h){	NewWindow=window.open('','','height=' + h + ',width=' + w + ',scrollbars=no,resizable=no,top=10,left=10');	NewWindow.focus();	NewWindow.document.write ("<html><head><title>");	NewWindow.document.write ("New York Renovations<\/title><\/head>");	NewWindow.document.write ("<BODY BGCOLOR='#ffffff' text='#000000' link='#FF0000' VLINK='#FF0000' ALINK='#FF0000' topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'>");	NewWindow.document.write ("<img src=");	NewWindow.document.write (url);	NewWindow.document.write (">");	NewWindow.document.write ("<\/body><\/html>")	NewWindow.document.close();	return false;}
