/* ROLLOVER MENU HEADER */

	var time = 100;
	function show(div) {
		document.getElementById(div).style.display = 'block';
	}
	function hide(div) {
		document.getElementById(div).style.display = 'none';
	}
	

function popUp(url, width, height) {
	
	if (width && height) {
		window.open(url,"_blank","toolbar=no,height=" + height + ",width=" + width + ",location=no,address=no,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no,copyhistory=true");
	} else {
		window.open(url,"_blank","toolbar=no,height=500,width=500,location=no,address=no,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no,copyhistory=true");
	}
}