	// Amazing Frameless Popup Window - Version I
	// (C) 2000 www.CodeLifter.com
	// Free for all users, but leave in this  header

	// set the popup window width and height
	
	var windowBreedte=200 // wide
	var windowHoogte=200 // high
	
	// set the screen position where the popup should appear
	
	var windowX = 10 // from left
	var windowY = 10 // from top
	
	// set the url of the page to show in the popup
	
	var urlPop = "f_crash_1b.htm"
	
	// set the title of the page
	
	var title =  "LIQUA testje 1b"
	
	// set this to true if the popup should close
	// upon leaving the launching page; else, false
	
	var autoclose = true
	
	// ============================
	// do not edit below this line
	// ============================
	
	s = "width="+windowBreedte+",height="+windowHoogte;
	var beIE = document.all?true:false
	
	function openFrameloos(){
	  if (beIE){
	    NFWX = window.open("","popFrameless","fullscreen,"+s)     
	    NFWX.blur()
	    window.focus()       
	    NFWX.resizeTo(windowBreedte,windowHoogte)
	    NFWX.moveTo(windowX,windowY)
	    var frameString=""+
	"<html>"+
	"<head>"+
	"<title>"+title+"</title>"+
	"</head>"+
	"<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
	"<frame name='top' src='"+urlPop+"' scrolling=auto>"+
	"<frame name='bottom' src='about:blank' scrolling='no'>"+
	"</frameset>"+
	"</html>"
	    NFWX.document.open();
	    NFWX.document.write(frameString)
	    NFWX.document.close()
	  } else {
	    NFWX=window.open(urlPop,"popFrameless","scrollbars,"+s)
	    NFWX.blur()
	    window.focus() 
	    NFWX.resizeTo(windowBreedte,windowHoogte)
	    NFWX.moveTo(windowX,windowY)
	  }   
	  NFWX.focus()   
	  if (autoclose){
	    window.onunload = function(){NFWX.close()}
	  }
	}

