<!--
function popupWindow(mypage,w,h)
{
	var myname = mypage;
	var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	var settings = 'toolbar=0,location=0,directories=0,menubar=0,scrollbars=0,height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition;
	var win = window.open('http://www.toscani.nl/klanten/degier/fotos/index.php?img='+mypage,myname,settings);
}

function popupTeam(number)
{
	var LeftPosition = (screen.width) ? (screen.width-680)/2 : 0;
	var TopPosition = (screen.height) ? (screen.height-680)/2 : 0;
	var settings = 'toolbar=0,location=0,directories=0,menubar=0,scrollbars=0,height=680,width=680,top='+TopPosition+',left='+LeftPosition;
	var win = window.open('http://www.toscani.nl/klanten/degier/team/index.php?id='+number, 'teamlid'+number, settings);
}

function popupPage(mypage,w,h)
{
	var myname = mypage;
	var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	var settings = 'toolbar=0,location=0,directories=0,menubar=0,scrollbars=0,height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition;
	var win = window.open('http://www.toscani.nl/klanten/degier/templates/'+mypage+'.php',myname,settings);
}

function confirmRemove(title)
{
	var agree = confirm("Weet u zeker dat u " + title + " wilt verwijderen?");
	if (!agree) return false; else return true;
}
//-->
