//global variables
var WebRoot = '/';
var pathToImages='/images/';
//This functie is an empty function for href=""
function Void() {return;}

function openPopupWindow(sURL, wName, sProperties) {	
	window.open(sURL, wName, sProperties);
}

function openHulpEnAdvies(sUrl) {
	var w=500;
	var h=575;
	var x=(screen.width-w)/2;
	var y=(screen.height-h)/2
	var props = 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no';
	props = props + ', height='+h+', width='+w+', screenX='+x+', screenY='+y+', left='+x+', top='+y;
	window.open(sUrl, 'HulpEnAdvies', props);
}


function openwindow(link, xWidth, yHeight)
{
    var positionX = ((screen.width - xWidth) / 2);
    var positionY = ((screen.height - yHeight) / 2);
    
    window.open(link, 'Pharosreizen', 'resizable=no,location=no,directories=no,status=no,menubar=no,toolbar=no,titlebar=no,scrollbars=no, left=' + positionX + ', top=' + positionY + ', width=' + xWidth + ',height=' + yHeight);
}