// New Window
function goWindow(windowname,page,width,height,resize,scroll){
var url = "" + page;
var hWnd = window.open(url,windowname,"width=" + width +",height=" + height +",resizable=" + resize + ",scrollbars=" + scroll + ",top=0,left=" + (screen.width-(width+10)));
if ((document.window != null) && (!hWnd.opener))
hWnd.opener = document.window;
}

// Toggle Div
// div id show start with a small d as in id = "dsearch"
// to toggle the div use showD('search')
function showD(id){
	if (document.getElementById("d"+id).style.display == "") 
		showIt = "none"; 
	else 
		showIt = ""; 
		
	document.getElementById("d"+id).style.display = showIt;
}

// hide all div tags
function hideallDs(){
	var list=new Array("session","user","view");
	
	for(var item in list)
		document.getElementById("d" + list[item]).style.display = "none";
}