function OutsideLink(URL)	
	{
   		var writeURL = URL;
   		var thisSite="www.omn360.com";
	   	if (URL.length > 60)
	   	{
		   writeURL = URL.substr(0, 60) + "...";
	   	}
	   	if (confirm("\nThank you for visiting " + thisSite + ".\n\nBy clicking 'OK' you will be taken to: \n\n" + writeURL +"\n\nA Web site to which our Privacy Policy \ndoes not apply.\n\nYou are solely responsible for your \ninteractions with such Web sites.\n\n"))
	   	{
		   window.open(URL,"_blank");
	   	}
	}
