function getBrowserWidth()
{
	if (window.innerWidth) {
		return window.innerWidth;
	} else if (document.body.clientWidth) {
		return document.body.clientWidth;
	}
	return 0;
}
function getBrowserHeight()
{
	if (self.innerHeight) // all except Explorer
	{
		return self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
		// Explorer 6 Strict Mode
	{
		return document.documentElement.clientHeight;
	}
	else if (document.body) // other Explorers
	{
		return document.body.clientHeight;
	}
	return 0;
}
function getViewTop()
{
	if (document.documentElement && document.documentElement.scrollTop)
		return document.documentElement.scrollTop;
	else if (document.body)
		return document.body.scrollTop;
	else
		return 0;
}

email_data = new Array();
email_data[0] = new Array("<i@\"dfre>g/M=-u.Z:cazn ltohm", "0CFJ675<3KC1GHIAKI61HD?D1KK76KCEE24IHC=G7C9>7?BIK38;I61HDF@1KK76KCEE0:C8");
email_data[1] = new Array("r.c\"MtnhdgmD@a&<e:l/=> uoi-sk;xf", "?=F70@OD3:=IB5HA6@NNGK<8H5=JB@=9G@12H:3E4=B5@F;>HG:BMBL@0?C=E");

function get_email_link(index) {
    return decode_email(email_data[index][0], email_data[index][1]);
}

function decode_email(ML, MI) {
    OT = "";
    for(j=0; j<MI.length; j++){
        OT += ML.charAt(MI.charCodeAt(j) - 48);
    }
    return OT;
}