
var page = "player.html";
var windowprops = "width=520,height=75,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=no";

var cook = document.cookie;
function getCookie(name) { // use: getCookie("name");
	var index = cook.indexOf(name + "=");
	if (index == -1) return null;
	index = cook.indexOf("=", index) + 1; // first character
	var endstr = cook.indexOf(";", index);
	if (endstr == -1) endstr = cook.length; // last character
	return unescape(cook.substring(index, endstr));
}

function setCookie(name, value) 
{
    	if (value != null && value != "")
	{
		document.cookie=name + "=" + escape(value);
	}	
	cook = document.cookie; // update cook
}


function poplayer()
{
	var act=getCookie("player_active");

	if (act=='false' || act==null)
	{
		window.open(page, "", windowprops);
		setCookie("player_active", 'true');

		return 1;
	}
	else
	{

	}

}

function openplayer()
{
		window.open(page, "", windowprops);
}

