
	////////////////////////////////////////////////////////////////////// 
	// function toggle ( str _id, str _vis);							//
	//////////////////////////////////////////////////////////////////////
	// This function allows any element to be shown or hidden with the	//
	// onClick tag attribute. 											//
	//////////////////////////////////////////////////////////////////////
	function toggle(_id,_vis) {
		if ( _vis == 'show') {
			document.getElementById(_id).style.display='block';
		} else if ( _vis == 'hide'){
			document.getElementById(_id).style.display='none';
		} 
	}
	////////////////////////////////////////////////////////////////////// 
	// function popUp ( str url );										//
	//////////////////////////////////////////////////////////////////////
	// This function creates a popup window with the specified url		//
	//////////////////////////////////////////////////////////////////////
	function popUp(url) {
		newwindow=window.open(url,'name','height=600,width=800,scrollbars=1');
		if (window.focus) {newwindow.focus()}
	}