function Popup(fil){
	window.open(fil,'popup','height=360,width=350,location=no');
}

function fade(fadeout,fadeinn){
	if (fadeinn == 'in'){
		fadeout.style.MozOpacity = '0.5';
		fadeout.style.filter = 'alpha(Opacity=50)';	
	}
	if (fadeinn == 'out'){
		fadeout.style.MozOpacity = '1';
		fadeout.style.filter = 'alpha(Opacity=100)';
	}
}

function popup(url,name,win_height,win_width) {
	pos_horizon = ((screen.width/2)-(win_width/2));
	pos_vertical = ((screen.height/2)-(win_height/2));
	window.open(url,name,"width="+win_width+", scrollbars=yes, height="+win_height+",top="+pos_vertical+",left="+pos_horizon);
}
	
//bruges på step1
function ConfirmDelete(msg,url) {
	if(msg,url){
		if(confirm(msg)){
			location.href = url;
		}
	}
}

//profile
function CheckSubmit(){
	setTimeout("document.Int.sub.value='Vent venligst...';document.Int.sub.disabled=true;",100);
	document.Int.submit();
}
	
//list
function checkEmail(myForm) { 
	if (!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.email.value)){
		alert("Du har ikke angivet en korrekt e-mail");
		return(false);
	}
	else {
		return(true);
	}
}	

//tickets
function TjekSubmit(){
	setTimeout("document.searching.sub.value='Søger...';document.searching.sub.disabled=true;",100);
		document.searching.submit();
}

