function hgetCookie(name){
var cname = name + "=";
var dc = document.cookie;
    if (dc.length > 0)
	{
      begin = dc.indexOf(cname);
      if (begin != -1)
	  {
        begin += cname.length;
        end = dc.indexOf(";", begin);
            if (end == -1) end = dc.length;
            return unescape(dc.substring(begin, end));
      }
    }
    return null;
}

function haberdetay(Hno){   	
        if (hgetCookie("FULLACCESS")==null) 
        { 
        	url = "../abone/aboneol.aspx"
        	windowFeatures = "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no,titlebar=no,left=100,top=100,screenX=100,screenY=100,width=610,height=485";
        } 
        else 
        {
        	url="../Hisse/HaberDetay.aspx?HABERNO="+Hno
        	windowFeatures = "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes,titlebar=no,left=100,top=100,screenX=100,screenY=100,width=700,height=540";
        }
        haberwindow = window.open(url,"HaberDetay",windowFeatures)
    
}
