// JavaScript Document
<!-- Begin
		function PopUp(href,name,width,height) {
		var options = 'width=' + width + ',height=' + height + ',innerWidth=' + width + ',innerHeight=' + height + 'toolbar=no,menubar=no,titlebar=no,location=no,resizable=yes,scrollbars=scrollbars,directories=no';
		PopUp = window.open(href, name, options);
		PopUp.focus();
		}
		
		function Refresh() {
		var URL = window.location.href;
		window.location.replace(URL);
		}		
// End -->
