function readCookie(name) {
    var nameEQ = name + "=";
    var ca = document.cookie.split(';');
    for(var i=0;i < ca.length;i++) {
        var c = ca[i];
        while (c.charAt(0)==' ') c = c.substring(1,c.length);
        if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
    }
    return null;
}

// eat cookie and do magic
var tempcookie = readCookie('NVIDIADefaultTemp')
var existingcookie = readCookie('NVIDIADefaultLang')

if (!tempcookie || tempcookie=='') {
	if (existingcookie=="MX") { window.location = "http://www.nvidia.com.mx/page/home.html"; }
	if (existingcookie=="AR") { window.location = "http://arg.nvidia.com/page/home.html"; }
	if (existingcookie=="BR") { window.location = "http://www.nvidia.com.br/page/home.html"; }
	if (existingcookie=="CL") { window.location = "http://chl.nvidia.com/page/home.html"; }
	if (existingcookie=="CB") { window.location = "http://clm.nvidia.com/page/home.html"; }
	if (existingcookie=="VZ") { window.location = "http://ven.nvidia.com/page/home.html"; }
	if (existingcookie=="IT") { window.location = "http://www.nvidia.it/page/home.html"; }
	if (existingcookie=="PL") { window.location = "http://www.nvidia.pl/page/home.html"; }
	if (existingcookie=="RU") { window.location = "http://www.nvidia.ru/page/home.html"; }
	if (existingcookie=="DE") { window.location = "http://www.nvidia.de/page/home.html"; }
	if (existingcookie=="ES") { window.location = "http://www.nvidia.es/page/home.html"; }
	if (existingcookie=="FR") { window.location = "http://www.nvidia.fr/page/home.html"; }
	if (existingcookie=="UK") { window.location = "http://www.nvidia.co.uk/page/home.html"; }
	if (existingcookie=="CN") { window.location = "http://www.nvidia.cn/page/home.html"; }
	if (existingcookie=="IN") { window.location = "http://www.nvidia.co.in/page/home.html"; }
	if (existingcookie=="JP") { window.location = "http://www.nvidia.co.jp/page/home.html"; }
	if (existingcookie=="KR") { window.location = "http://kr.nvidia.com/page/home.html"; }
	if (existingcookie=="SG") { window.location = "http://www.nvidia.com/page/home.html"; }
	if (existingcookie=="TW") { window.location = "http://www.nvidia.com.tw/page/home.html"; }    
	if (!existingcookie || existingcookie=="") { window.location = "http://www.nvidia.com/content/global/global.php"; }  
}