function disSwitch(obj,sw){
	if(sw == "block"){
		document.getElementById(obj).style.display="block";
		document.getElementById('close').style.display="block";
		document.getElementById('open').style.display="none";
	}else{
		document.getElementById(obj).style.display="none";
		document.getElementById('close').style.display="none";
		document.getElementById('open').style.display="block";
	}
}

function myListOpen(loc){
var wnd="myList";
var myWindow = window.open(loc,"myList","scrollbars=yes,location=no,menubar=no,width=600,height=700");
/*if (myWindow.focus!=null) {
myWindow.focus();
}*/
}
