function popup(URL) {
wind=window.open(URL, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=480');
wind.document.write('<html>');
wind.document.write('<head>');
wind.document.write('<title>SURICATA OFF ROAD</title>');
wind.document.write('</head>');
wind.document.write('<body style="margin: 0px">');
wind.document.write('<img src="' + URL + '" width="640" height="480"/>');
wind.document.write('</body>');
wind.document.write('</html>');
}

