function MotionPoint()
{
//alert('in function MotionPoint()'); 
// you can switch between 24 and 536 instead of ?24 switch to ?536
if(window.location.href.indexOf('www.mazdaespanol.com/mazdausa/enes')!=-1)
{	
	idx=window.location.href.indexOf('mp_act_url');
	if(idx!=-1)
	{
		pidx=window.location.href.indexOf('&',idx);
		uidx=window.location.href.indexOf('=',idx)+1;
		url=unescape(window.location.href.substring(uidx,pidx));
		pms=window.location.href.substring(pidx+1);
		window.location.href=url+'?'+pms;
	}else{
		window.location.href=window.location.href.substring(window.location.href.indexOf(';')+1);
	}
}else{
	//alert("case 4");
	window.location.href = window.location.protocol+'//www.mazdaespanol.com/mazdausa/enes/?24;' + window.location.href; 
}
}
