// JavaScript Document
function popupwindow(url,popupname,parameters)
{
	window.open(url,popupname,parameters);
}
function showFlyer(url, popupname) {
	var intWidth = 298;
	var intHeight = 430;
	var intLeft=Math.round((screen.availWidth/2)-(intWidth/2));
	var intTop=Math.round((screen.availHeight/2)-(intHeight/2));
	window.open(url,'showFlyer', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+intWidth+',height='+intHeight+',left='+intLeft+',top='+intTop);
}

function show02() {
	var intWidth = 600;
	var intHeight = 540;
	var intLeft=Math.round((screen.availWidth/2)-(intWidth/2));
	var intTop=Math.round((screen.availHeight/2)-(intHeight/2));
	window.open('360showcase/index2.html','show02', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+intWidth+',height='+intHeight+',left='+intLeft+',top='+intTop);
}

function show03() {
	var intWidth = 600;
	var intHeight = 450;
	var intLeft=Math.round((screen.availWidth/2)-(intWidth/2));
	var intTop=Math.round((screen.availHeight/2)-(intHeight/2));
	window.open('disclaimer/disclaimer.htm','show02', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+intWidth+',height='+intHeight+',left='+intLeft+',top='+intTop);
}

function popUpYouTube(title, url) {
	//var title = 'ZachteG @ lange nacht van creativiteit';
	//var url = 'http://www.youtube.com/v/OPrrKpcJMr0';
	
	
	var intWidth = 551;
	var intHeight = 510;
	var intLeft=Math.round((screen.availWidth/2)-(intWidth/2));
	var intTop=Math.round((screen.availHeight/2)-(intHeight/2));
	window.open('popup/pop-up.php?title='+title+'&url=' + url +'','popUpYouTube', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+intWidth+',height='+intHeight+',left='+intLeft+',top='+intTop);
}