function openSite(lan) {
	
	h = screen.height;
	w = screen.width;
	
	winprops = 'height='+h+',width='+w+',top=0,left=0,scrollbars=no,resizable=no';
	
	win = window.open('home.php?lan='+lan, 'bluestone', winprops);
		
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }

}
