var newwindow;
function popit(url)
{
    newwindow=window.open('','name','height=492,width=430');
    newwindow.document.write ('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
    newwindow.document.write ('\n<html xmlns=" http://www.w3.org/1999/xhtml">');
    newwindow.document.write('\n<head>');
    newwindow.document.write('\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
    newwindow.document.write('\n<title>Pac Golf - Home</title>');
    newwindow.document.write('\n<style type="text/css">html, body {text-align:center;margin:0;padding:0;border:0;}</style>');

    newwindow.document.write ('\n</head>');
    newwindow.document.write('\n<body>');
    newwindow.document.write('\n<img src="'+url+'" width="430" height="492">');
    newwindow.document.write('\n</body>\n</html>');
	newwindow.document.close();
    if (newwindow) {newwindow.focus()}
}
