	
	// PopUp WIndow
	
	function soopaPop(URL, width, height, resize, scroll) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + scroll + ',location=0,statusbar=0,menubar=0,resizable=' + resize +',width=' + width + ',height=' + height + ',innerWidth=' + width + ',innerHeight=' + height + ',screenX=150,screenY=150,left=150,right=150');");
	}

	
	
	
	// RollOver Buttons
	
<!--
	
	if (document.images) {            // Active Images
	
				
				//Primary Nav
				
	            img1on = new Image();      
	            img1on.src = "images/nav_Home_02.jpg";
	
	            img1off = new Image(); 
	            img1off.src = "images/nav_Home_01.jpg";   
				
				//---
				
				img2on = new Image();      
	            img2on.src = "images/nav_About_02.jpg";
	
	            img2off = new Image(); 
	            img2off.src = "images/nav_About_01.jpg"; 
				
				//---
				
				img3on = new Image();      
	            img3on.src = "images/nav_Services_02.jpg";
	
	            img3off = new Image(); 
	            img3off.src = "images/nav_Services_01.jpg"; 
				
				//---
				
				img4on = new Image();      
	            img4on.src = "images/nav_FAQ_02.jpg";
	
	            img4off = new Image(); 
	            img4off.src = "images/nav_FAQ_01.jpg"; 
				
				//---
				
				img5on = new Image();      
	            img5on.src = "images/nav_Articles_02.jpg";
	
	            img5off = new Image(); 
	            img5off.src = "images/nav_Articles_01.jpg"; 
				
				//---
				
				img6on = new Image();      
	            img6on.src = "images/nav_Dispensery_02.jpg";
	
	            img6off = new Image(); 
	            img6off.src = "images/nav_Dispensery_01.jpg"; 
				
				//---
				
				img7on = new Image();      
	            img7on.src = "images/nav_Corpo_02.jpg";
	
	            img7off = new Image(); 
	            img7off.src = "images/nav_Corpo_01.jpg"; 
				
				//---
				
				img8on = new Image();      
	            img8on.src = "images/nav_Links_02.jpg";
	
	            img8off = new Image(); 
	            img8off.src = "images/nav_Links_01.jpg"; 
				
				//---
				
				img9on = new Image();      
	            img9on.src = "images/nav_Appointments_02.jpg";
	
	            img9off = new Image(); 
	            img9off.src = "images/nav_Appointments_01.jpg"; 

				     }
	
	// Function to 'activate' images.
	function imgOn(imgName) {
	        if (document.images) {
	            document[imgName].src = eval(imgName + "on.src");
	        }
	}
	
	// Function to 'deactivate' images.
	function imgOff(imgName) {
	        if (document.images) {
	            document[imgName].src = eval(imgName + "off.src");
	        }
	}
	
	// -->
	
	// Mail To A Friend

	function mailpage()
	{
	mail_str = "mailto:?subject=Check out the " + document.title;
	mail_str += "&body=I thought you might be interested in the " + document.title;
	mail_str += ". You can view it at, " + location.href; 
	location.href = mail_str;
	}
	
	<!-- Begin
	function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=460,height=400,left = 290,top = 262');");
	}
	// End -->

