function Get_Cookie(name) {
    var start = document.cookie.indexOf(name+"=");
    var len = start+name.length+1;
    if ((!start) && (name != document.cookie.substring(0,name.length))) return null;
    if (start == -1) return null;
    var end = document.cookie.indexOf(";",len);
    if (end == -1) end = document.cookie.length;
    return unescape(document.cookie.substring(len,end));
}

function Set_Cookie(name,value,expires,path,domain,secure) {
    document.cookie = name + "=" +escape(value) +
        ( (expires) ? ";expires=" + expires.toGMTString() : "") +
        ( (path) ? ";path=" + path : "") + 
        ( (domain) ? ";domain=" + domain : "") +
        ( (secure) ? ";secure" : "");
}

function countInstances(string, word) {
  	var substrings = string.split(word);
  	return substrings.length - 1;
}

var cookieval = Get_Cookie('go') ;

if (countInstances(location.href,"pop=no") > 0)
{
	cookieval = "nopop" ;
	Set_Cookie("go",cookieval,"","../default.htm") ;
}

if (cookieval)
{
	if (cookieval != "nopop")
	{	
		cookieval++ ;
		Set_Cookie('go',cookieval,"","../default.htm") ;
	
		cookieval = Get_Cookie('go') ;
		if (cookieval == 2  || cookieval == 4 || cookieval == 6) 
		{
			document.write('<!-- AdSpace Network=ugo size=1x1 adtype=over affiliate=amp1 suba=amp1 channel=filmtv subchannel=tic category=tic PT=ct CR=ti pez=tic --><scr'+'ipt language="javascript1.1" src="../../mediamgr.ugo.com/js.ng/Network=ugo&size=1x1&adtype=over&affiliate=amp1&suba=amp1&channel=filmtv&subchannel=tic&category=tic&PT=ct&CR=ti&pez=tic"></scr'+'ipt><!-- /AdSpace -->') ;		
		}
	}

} else {
	cookieval = 1 ;
	Set_Cookie('go',cookieval,"","../default.htm") ;
}