// JavaScript Document
function init(){
	document.getElementById("navlist2").style.display = "none";
}
function show(id){
	document.getElementById(id).style.display = '';
}
function remove(id){
	document.getElementById(id).style.display = 'none';
}

function openPopup(file, width, height){
	NewWindow=window.open("popup.php?file="+file,'newWin','width='+width+',height='+height+',left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No');  
	NewWindow.focus();     
	screen_height = window.screen.availHeight; 
	screen_width = window.screen.availWidth; 
	left_point = parseInt(screen_width/2)-(width/2); 
	top_point = parseInt(screen_height/2)-(height/2); 
	setTimeout('NewWindow.moveTo(left_point,top_point)',50); void(0);
}