function setCookie(c_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;

//alert(document.cookie);
}

function getCookie(c_name)
{
	//alert(document.cookie);
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
{
  x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
  y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
  x=x.replace(/^\s+|\s+$/g,"");
  if (x==c_name)
    {
    return unescape(y);
    }
  }
}


function forwardToMobile()
{
	
	var search = window.location.search;
	var forceFull = false;
	if (search != null && search.indexOf('fullSite=true') >= 0)
	{
		forceFull = true;
	}
	
	if ((navigator.platform == "iPhone") && !forceFull )
	{
		window.location="http://www.peninsulamalaysiancuisine.com/m";
	}  
}

function forceFullSite()
{

	window.location="http://www.peninsulamalaysiancuisine.com/home_mobile_test.html?fullSite=true"
}
