  	function showPolicy()
	{
		new_window = open("","hoverwindow","width=300,height=300,left=10,top=10");

		// open new document 
		new_window.document.open();
		
		// Text of the new document
		// Replace your " with ' or \" or your document.write statements will fail
		new_window.document.write("<html><title>Essential HealthCare Email Policy</title>");
		new_window.document.write("<body bgcolor=\"#339999\"><center><h3 style=\"color: #CCFFFF; \">Email Policy</h3></center>");
		new_window.document.write("<p style=\"color: #ffffff; font-size: 16px;\">We will not share, sell, rent, swap, or");
		new_window.document.write(" authorize any third party to ");
		new_window.document.write(" use your e-mail address. If you feel you ");
		new_window.document.write(" have received an e-mail message from us in error, please contact ");
		new_window.document.write(" care@ehealth-center.com</p>");
		new_window.document.write("<p style=\"color: #ffffff; font-size: 16px;\">Essential HealthCare offers ");
		new_window.document.write("several e-mail newsletters. If you no longer wish to");
		new_window.document.write(" receive a specific newsletter, follow the 'unsubscribe'' instructions located near the");
		new_window.document.write(" bottom of each newsletter.</p>");
		new_window.document.write("</body></html>");
		
		// close the document
		new_window.document.close(); 
	}
	function closeWindow() 
	{
		new_window.close();
	}

