function popupbanner(url, img,w,h) { 
	// LeftPos = (screen.width) ? (screen.width-130)/2 : 0;
	// TopPos = (screen.height) ? (screen.height-130)/2 : 0;
	LeftPos = 20;
	TopPos = 20;
	settings = 'height='+h+',width='+w+',top='+TopPos+',left='+LeftPos+',scrollbars=yes,resizable=yes';
	imageWin=window.open('',"imageWin",settings);
	imageWin.document.open(); 
	imageWin.document.write( 
	'<html>'+ 
	'<head>'+ 
	'<title>Besøg vores sponsor</title>'+ 
	'<\script language="JavaScript">'+ 
	'function myResize() {'+ 
	'picW = document.images["pic"].width;'+ 
	'picH = document.images["pic"].height;'+ 
	'picW = picW+30;'+
	'picH = picH+38;'+
	'if (picH>600) {window.resizeTo(picW,600)'+
	'} else {window.resizeTo(picW,picH);}'+ 
	'}'+ 
	'<\/script>'+ 
	'</head>'+ 
	'<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="myResize();">'+ 
	'<a href="'+url+'" onclick="self.close();" title="Klik for at besøge vores sponsor" target="_blank">'+
	'<img src="' + img + '" NAME="pic" border="0"></a>'+ 
	'</body>'+ 
	'</html>' ); 
	imageWin.focus();
	imageWin.document.close(); 
}