
function popUp(url) 
		{
			var Win = window.open(url,"popUp",'width=500,height=600,resizable=yes,scrollbars=yes,location=yes,menubar=no,top=0,left=0' );
		}
		
function printPage()
		{
			window.print()
		}
		
function closeWindow() 
		{
		    window.close();
		}
		
function popupMessage() 
		{  
	// SET MESSAGE VALUES  
	
		var to = " ";  
		var cc = " ";  
		var bcc = " ";  
		var subject = "Intertek link: Information of interest to you";  
		var currPage = "A colleague of yours thought you would benefit from this informational link:     " + "\n" + window.document.location.toString() 
						+ "\n" + "\n"+ "--------------------------------------------------------------------------------------------------------------" 
						+ "\n" + "\n" + "Intertek" + "'" + "s ETL SEMKO division is a global product testing and certification company." 
				        + " For more than 100 years we have provided manufacturers and their engineers with insight, guidance and solutions that get their products to market, quickly and expertly." 
						+ "\n" + "\n" + "Become a member of My TestCentral to receive personalized testing & certification information, exclusive promotions and members" + "'" + " only communication with experts." 
						+ " Sign up here: http://www.intertek-etlsemko.com/portal/page?_pageid=34,45037&_dad=cust_portal&_schema=CUST_PORTAL";
		
	// BUILD MAIL MESSAGE COMPONENTS   
		var doc = "mailto:" + to + "?cc=" + cc +"&bcc=" + bcc + "&subject=" + escape(subject) + "&body=" + escape(currPage);   
	
	// POP UP EMAIL MESSAGE WINDOW  
	    window.location = doc;
	
	}
	
		
	
