<!--

	
	
	function onLoadFunctions(){
		//this function is a template
		};
		
		function ConfirmAlert(url,text) {
			if (confirm(text)) {
				 redir(url);
			return;				
			} 
		}
		function noConfirmRedir(url,redir) {
				var re = new RegExp ('/', 'gi') ;
				var newstr = redir.replace(re, '|') ;
				//alert(url+'/redir/'+newstr);
				openLink(url+'/redir/'+newstr);
		}

function doPrint() {
	window.print();
	}
	
	function redir(lin){
		
		 window.location=lin;
		}

function Togglediv(divName) {
//alert(document.getElementById(divName).style.display);
	if (document.getElementById(divName).style.display == "none") {
		 Showdiv(divName) ;
		}
	else {
		Hidediv(divName) ;
	}
} 

function Showdiv(divName) 
{ with (document.getElementById(divName).style) 
	{ 
	 display = "block"; 
	}
} 
function Hidediv(divName) 
{ with (document.getElementById(divName).style) 
	{ 
	 display = "none"; 
	}
} 


-->