function openPopup(link){
	newwindow = window.open(link,'popup','resizable=0,height=610,width=757,toolbar=no,scrollbars=yes,location=no,status=no');
	if(window.focus) newwindow.focus();
}

function openPrijzenPopup(link){
	newwindow = window.open(link,'popup','resizable=0,height=526,width=879,toolbar=no,scrollbars=no,location=no,status=no');
	if(window.focus) newwindow.focus();
}

function getMovieName(movieName) {
	if(navigator.appName.indexOf("Microsoft") != -1){
		return window[movieName];
	}else{
		if(document[movieName].length != undefined){
			return document[movieName][1];
		}
		return document[movieName];
	}
}

function openFacebook(url){
	newwindow = window.open('http://www.facebook.com/share.php?u=' + url,'facebook','resizable=1,height=650,width=1020,toolbar=no,scrollbars=yes,location=no,status=no');
	if(window.focus) newwindow.focus();
}