
function openmap(HM,LM) { 

var l=(screen.width-500)/2;t=(screen.height-700)/2;
HM=HM-6;
LM=LM-6;

mapw=window.open('','Map','toolbar=no,location=no,menubar=no,scrollbars=no,resizable=no,directories=no,status=no,width=500,height=700,left='+l+',top='+t);
mapw.focus();

mapw.document.write('<html>');
mapw.document.write('<head>');
mapw.document.write('<title>Map Low Countries</title>');
mapw.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
mapw.document.write('</head>');
mapw.document.write('<body background="Pics/LowCountries.jpg">');
mapw.document.write("<img style='position:absolute;top:"+LM+";left:"+HM+";width:12;height=12' src='Pics/Star.gif'>");
mapw.document.write("</body>");
mapw.document.write("</html>");
mapw.document.close();

}


