//<!--
	var pointer = 'blue';
	function showDiv(color){
		document.getElementById(pointer).style.display='none';
		document.getElementById(color).style.display='block';
		pointer = color;	
	}
//-->
//<!--
	function PopFormFromMenu(NAME, URL, height, width){
		var options = "statusbar=0,toolbar=0,location=0,menubar=0,scrollbars=1,resizable=0,directories=0," +"width="+ width + ",height=" + height //+"'";
		//options = "width="+ width + ",height=" + height;;
		//alert(options);
		//alert(url);
		//alert(name);
		var mywindow = window.open(URL, NAME, options); 
		//eval("page = window.open('" + URL + "', '" + name + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height + "');");
		//eval("page = window.open(URL, 'myWindow', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width="+width+",height="+height+"');");
	}
//-->