/* namspace gmds */
var gmds = gmds || 
{ 

};

gmds.T01COOKIE = "myHomepage";

/**
* Checks if cookie for T01 redirect is set. The cookie contains the link to the homepage, the user has clicked.
*/
gmds.checkT01Cookie = function(/*bool*/ isPreview)
{
	var cookieData = gmds.getCookie(gmds.T01COOKIE);
	if (cookieData && !isPreview) {
	
			window.location.replace(cookieData);
		
		}
};

gmds.removeT01Cookie = function()
{
	gmds.deleteCookie(gmds.T01COOKIE);
};



/**
* set cookie for T01
*/
gmds.setT01Cookie = function(/*String*/link)
{
	gmds.setCookie(gmds.T01COOKIE, link, 1000000000000);
};
