// Copyright to Paper. Please ask before editing, redistributing and reuploading
$("#menu_pm ul").append("<li><a href='http://s1.zetaboards.com/switchboard/msg/?global=true'><font color='#33FF33'>Global PM Inbox</font></a></li><li><a href='javascript:var d=new Date();document.cookie=\"gpm=;expires=\"+d.toGMTString()+\";path=/\";document.location.href=main_url'><font color='#33FF33'>Recount Global PMs</font></a></li>");

function createCookie(name,value) {
	var date = new Date();
	date.setTime(date.getTime()+(300000));	// Five minutes
	var expires = "; expires="+date.toGMTString();
	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;
}

if (document.location.href.match("ginbox=")) {
	top.location.href='javascript:void($("#menu_pm small").html($("#menu_pm small").html() + " \/ <font color=\'#52D017\'>' + document.location.href.split("ginbox=")[1] + '<\/font>"));';
	createCookie("gpm",document.location.href.split("ginbox=")[1]);
	document.body.innerHTML="";
	// IE7 bug fix
	if (parseFloat(navigator.appVersion.split("MSIE")[1]) >= 7) {
		document.execCommand('Stop');
	}
} else {
	if (readCookie("gpm") == null) {
		createCookie("gpm","-");
		document.getElementById("nav").innerHTML+="<iframe width='0' height='0' frameborder='0' src='http://s1.zetaboards.com/switchboard/index/?r_url="+main_url+"'></iframe>";
	} else if (readCookie("gpm") != "-") {
		$("#menu_pm small").html($("#menu_pm small").html() + " \/ <font color='#52D017'>" + readCookie("gpm") + "<\/font>");
	}
}

function gp_view() {
	document.getElementById("wrap").innerHTML="<iframe id='global_pm' SCROLLING='no' width='100%' height='700' frameborder='0' src='http://s1.zetaboards.com/switchboard/msg/'></iframe><br>";
	document.write("<center>Increase Global PM viewing space: <acronym title='Increase by 100 pixels'><img OnClick='document.getElementById(\"global_pm\").height=parseInt(document.getElementById(\"global_pm\").height)+100;' src='http://209.85.62.24/static/1/w_up.png'></acronym> <acronym title='Increase by 200 pixels'><img height='15' width='15' OnClick='document.getElementById(\"global_pm\").height=parseInt(document.getElementById(\"global_pm\").height)+200;' src='http://209.85.62.24/static/1/w_up.png'></acronym> <acronym title='Increase by 500 pixels'><img height='18' width='18' OnClick='document.getElementById(\"global_pm\").height=parseInt(document.getElementById(\"global_pm\").height)+500;' src='http://209.85.62.24/static/1/w_up.png'></acronym></center><br>");
}