function popUp(URL,w,h,scrollbars) {	
	newwindow=window.open('', '', 'toolbar=0,scrollbars=' + scrollbars + ',location=0,statusbar=0,menubar=0,resizable=0,width=' + w + ',height=' + h);
	var tmp = newwindow.document;
	tmp.write('<html><head><title>Trueline Patios & Extensions</title>');
	tmp.write('<LINK REL="SHORTCUT ICON" HREF="icon.ico"></head><body topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0 bgcolor=#FFFFFF>');
	tmp.write('<table height=100% width=100% border=0 cellspacing=0 cellpadding=0><tr><td align=center height=100%><img src='+URL+' border=0></td></tr></table>');
	tmp.write('</body></html>');
	tmp.close();
	getWidth = screen.availWidth - 10;
	getHeight = screen.availHeight -30;
	widthPos = (getWidth-w) / 2;
	heightPos = (getHeight-h) / 2;
	newwindow.moveTo(widthPos,heightPos);
}
