function openfull(theURL,winName,features,w,h) { //v2.0
	newwin=window.open(theURL,winName,features,w,h);
	newwin.moveTo(0,0);
	newwin.resizeTo(screen.availWidth,screen.availHeight)
	newwin.focus()
}

function showhide(id){
	if (document.getElementById){
		obj = document.getElementById(id);
		//alert(obj);
		if (obj.style.display == "none"){
			obj.style.display = "";
		} else {
			obj.style.display = "none";
		}
	}
} 


