// JavaScript Document
function Redirect(links){
	
	if(document.referrer==''||document.referrer!=links)
	{
		alert("Please click here and then re-click the link for: ...pricing and purchase ...                                                                                                                     	("+links+").");
		window.location.href=links;
	} 
}

