//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Made by oakland.dk
// Dennis 2004
//
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
//	imageName	filnavn
//	imageWidth	popup bredde
//	imageHeight	popup højde
//
//
//
//
//~~~~~~~~~~~~~~~~~~~~~~ billedfremviser ~~~~~~~~~~~~~~~~~~~~~~

function visbillede(imageName,imageWidth,imageHeight) {
var w = screen.availWidth;			/* skærmopløsningen vertikalt */
var h = screen.availHeight;			/* skærmopløsningen horisontalt */
var leftPos = (w-imageWidth)/2		/* centrerer popup vinduet horisontalt */
var topPos = (h-imageHeight)/2		/* centrerer popup vinduet vertikalt */
var mappe = "images/"				/* standard mappe hvor fotobibliotekerne ligger */
var url = (mappe + imageName);		/* den sammensatte adresse på fotoet */

newWindow = window.open('','newWindow','width='+imageWidth+',height='+imageHeight+',left='+leftPos+',top='+topPos+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
newWindow.document.open();
newWindow.document.write("<html>\n<title>Skanderborg MTB  ôºo</title>\n\r<body bgcolor=\"#000000\" leftmargin=\"0\" topmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" onblur=\"self.close()\">\n\r");
newWindow.document.write("<img src=\""+url+"\" width=\""+imageWidth+"\" height=\""+imageHeight+"\" title=\""+imageName+"\">\n\r");
newWindow.document.write("<body>\n</html>");
newWindow.document.close();
newWindow.focus();}

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
