function smartPrint(sId)
{
	var a = window. open('','','scrollbars=yes,width=300,height=300');
	a.document.open("text/html");
	a.document.write('<html><head><style type="text/css">#frame{background-image:none;background-color:#FFFFFF;}.noprint{display:none;}</style></head><body style="padding-left:20px;background-image:none;background-color:#FFFFFF;font-family:Verdana, Arial, Tahoma;">');
	a.document.write(document.getElementById(sId).innerHTML);
	a.document.write('</body></html>');
	a.document.close();
	a.print();
}
var newwindow = '';
var popurl = '';

function showFotoalbum(num) {
	location.href= 'index.php?page=fotos&node='+num;
	/*popurl='http://www.festivents.nl/flash/photoviewer/popup.php?event='+num;
	if (!newwindow.closed && newwindow.location) {
		newwindow.location.href = popurl;
	}
	else {
		newwindow=window.open(popurl,'photoviewer','width=1000,height=595');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}*/
}

function setMainImg(sUrl) {
	//var oRight = document.getElementById('right');
	//var iRightHeight = oRight.height;
	//alert(iRightHeight);
	var oMainImg = document.getElementById('mainimage');
	oMainImg.src = sUrl;
	//if (oRight.style.height < iRightHeight) {
	//	oRight.style.height = iRightHeight;
	//}
}
function activateRoute(sNaam) {
	var cities = new Array();
	cities[0] = "denhaag";
	cities[1] = "rotterdam";
	cities[2] = "amsterdam";
	cities[3] = "utrecht";
	for (x in cities)
	{
		if (cities[x] == sNaam) {
			document.getElementById(cities[x]).style.display='block';
			document.getElementById(cities[x]+'_button').style.color='#ff0303';
		} else {
			document.getElementById(cities[x]).style.display='none';
			document.getElementById(cities[x]+'_button').style.color='';
		}
	}
	
}