function win(windowURL, windowName, windowFeatures ) { 
	newWindow = window.open( windowURL, windowName, windowFeatures ) ; 
	newWindow.focus();
} 

function simpleWin(windowURL,width,heigth) { 
	newWindow = window.open(windowURL,'','toolbar=0,scrollbars=1,menubar=0,status=0,location=0,resizable=yes,width=' + width + ',height=' + heigth) ; 
	newWindow.focus();
} 
function cancel(){
	window.location='tomt.html';
} 
function tilBaka(){
	history.go(-1);
} 
function eldirUtgafur(argument,id){
	simpleWin('eldriutgafur.asp?argument=' + argument + '&id=' + id,300,400)
} 