/* Author: www.cit.com.br
   Date: June, 2007
*/ 

function Switch_lang(ad) 
{
	if (ad.indexOf('/en/') != -1) 
	{
		location.href=ad.substring(0,ad.indexOf('/en/'))+'/fr/'+ad.substring(ad.indexOf('/en/')+4);
	}
} 

function openPopup (width, height, url, name) 
{
	var windowWidth = window.screen.width;
	var windowHeight = window.screen.height;
		
	var popupWidth = width;
	var popupHeight = height;
		
	var popupTop = (windowHeight - popupHeight) / 2;
	var popupLeft = (windowWidth - popupWidth) / 2;
		
	var features = "width=" + popupWidth + ",height=" + popupHeight + ",top=" + popupTop + ",left=" + popupLeft;
		
	window.open(url, name, features);			
}	
/*
** @type coupon or rebate
*/
function printRedirect(type){
	//Google Analytics	
	if(type=="coupon" || type=="coupon-cold-healing" ){
			pageTracker._trackPageview('/coupon/en');
	}else if(type=="rebate" ){
			pageTracker._trackPageview('/rebate/en');
	}
	
	//print
	if(type=="coupon"){		
		document.getElementById("coupon-cold-healing").style.display="none";
	}
	
	if(type=="coupon-cold-healing"){
		document.getElementById("coupon").style.display="none";	
     }
	 	
	
	window.print();


}

