function init()
{
var address = window.location.href;
var parameter = window.location.search; 

if (address != 'http://www.millenniumjam.com/default_nl.html' && parameter !='?print')
	{ window.open('http://www.millenniumjam.com/default_nl.html','_top','');}

if (parameter == '?print') {window.print();}
}


function printPage() {
	newwindow=window.open('#?print','name','width=800, height=600');
	if (window.focus) {newwindow.focus(); newwindow.print();}
}


