var filnavn

function BilledVindue(fil,b,h){
		var venstre_side = (screen.availWidth ) / 2 - b/2
		var top_side = (screen.height) / 2 - h/2
		var dimension = 'height=' + h + 
				 		 				', width=' + b + 
				 		 				',left=' + venstre_side + 
										',top=' + top_side 

		nytVindu = window.open(fil, "" , dimension)
		nytVindu.document.bgColor = 0xD6EF39
 	  }																

