		browserName = navigator.appName;
		browserVer = parseInt(navigator.appVersion);
		var msie4 = (browserName == "Microsoft Internet Explorer" && browserVer >= 4);
		if ((browserName == "Netscape" && browserVer >= 3) || msie4 || browserName=="Konqueror") {version = "n3";} else {version = "n2";}
			// Blurring links:
		function blurLink(theObject)	{	//
			if (msie4)	{theObject.blur();}
		}

function openBeslisMod() {
// open a new popup window
var popWin = window.open('','','scrollbars=no,toolbar=no,location=no');
popWin.moveTo(0,0);
popWin.resizeTo(screen.width,screen.height);
// create new document
popWin.document.open();
popWin.document.write('<html><head><title>Beslismodel draagbare infuuspompen');
popWin.document.write('</title>');
popWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
popWin.document.write('</head><body>');

popWin.document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="100%"  height="100%" id="BM" align="middle">');
popWin.document.write('<param name="allowScriptAccess" value="sameDomain" />');
popWin.document.write('<param name="movie" value="fileadmin/bmflash/BM.swf" />');
popWin.document.write('<param name="quality" value="high" />');
popWin.document.write('<param name="bgcolor" value="#ffffff" />');
popWin.document.write('<embed src="fileadmin/bmflash/BM.swf" quality="high" bgcolor="#ffffff" width="100%" height="100%" name="fileadmin/bmflash/BM" align="middle" allowScriptAccess="sameDomain"  type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
popWin.document.write('</object>');

popWin.document.write('</body></html>');

// close
popWin.document.close();
}

