// clear email subscribe box
		function ClearEmailText() {
		var srch = event.srcElement
		if (srch.value == "Enter E-mail address") {
			srch.value = "";
		}
}
		
		// Email function to popup the email article link
			function popupEmail(){
			
				jWindow = window.open('/popup_email.asp?rurl='+location.href,'popupemail','width=500,height=500');
				if (window.focus) {
					jWindow.focus();
				}
			}
			
		// Print Friendly function
			function printFriendly(){
			
			var myurl = file_name_only(location.href)
				bWindow = window.open('/ftp/release/printview/'+myurl+'.htm','printfriendly');
				if (window.focus) {
					bWindow.focus();
					}
			
			}
			
		// return the file name only from the current url location	
		function file_name_only(str) { 
			return str.substring(str.lastIndexOf('/') + 1, str.lastIndexOf('.')) 
			}
		
		
		//Function Added by Cesar 5/8/07 *****************************************************************************************	
		function check(form)
		{
		one = document.getElementById("nr_radio1");		
		two = document.getElementById("all_radio1");	
		if (one.checked == true)
			{
			    //alert("check TEST 1");
				document.getElementById("site").value ='News';
				document.getElementById("proxystylesheet").value ='News';
			}	
		else
			{
			    //alert("check TEST 2"); 
				document.getElementById("site").value ='Internet';
				document.getElementById("proxystylesheet").value ='OCCgov';
			}
		}
		
		
		