function showWindow(w,h) {

WWindow = w + 40
HWindow = h + 90


pictureWindow = open("", "WebMasterInfo", "width=" + WWindow + ",height=" + HWindow + ",status=no,toolbar=no,menubar=no");

pictureWindow.document.open();  

pictureWindow.document.write("<html>\n<head>\n<title>Webplatsen</title>\n<style>\n");
pictureWindow.document.write("@import \"/common.css\";  \n");
pictureWindow.document.write("</style>\n</head>\n");
pictureWindow.document.write("<body class=\"pupupWindow\" OnBlur=\"focus()\">\n");
pictureWindow.document.write("<p>This website is created by my older son Carl Adell.<br><br>");
pictureWindow.document.write("Questions regarding the function of this site please contact him at webmaster@willys8.se<br><br>");
pictureWindow.document.write("<a href=\"#\" OnClick=\"window.close()\">Close this window</a></p>\n");
pictureWindow.document.write("</body>\n</html>\n");

pictureWindow.document.close();  
 
}
