	function openNewWindow(theURL,winName,features) {
	  	window.open(theURL,winName,features);
	}
	function openBlankWindow(theURL,winName) {
	  	window.open(theURL,winName,'toolbar=yes, location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes');
	}
