<!--
var nth=1; 
var perc = Math.round((1/nth)*1000);
var rnd = Math.round(Math.random()*1000);
var expdate=new Date(); expdate.setTime(expdate.getTime()+(24*60*60*1000*180));

var cookieval=0;
cookieval = GetCookie("socratos_61");

if(cookieval != 1)
{
	SetCookie("socratos_61",'1',expdate,"/",null,false);
	cookieval = GetCookie("socratos_61");
	if(cookieval == 1)
	{	
		if(rnd <= perc) document.write('<script type="text/javascript" src="http://ivoxua.socratos.net/data/js/socratos_dhtml_7528.php"></script>');
	}
}

function GetCookie(name)
{
	var arg=name+"=";
	var alen=arg.length;
	var clen=document.cookie.length;
	var i=0;
	while(i<clen)
	{
		var j=i+alen;
		if(document.cookie.substring(i,j)==arg) return getCookieVal(j);
		i=document.cookie.indexOf(" ",i)+1;
		if(i==0)break;
	}
	return null;
}
function getCookieVal(offset)
{
	var endstr=document.cookie.indexOf(";",offset);
	if(endstr==-1)endstr=document.cookie.length;
	return unescape(document.cookie.substring(offset,endstr));
}
function SetCookie(name, value, expires, path, domain, secure)
{
	document.cookie=name+"="+escape(value)+((expires==null)?"":("; expires="+expires.toGMTString()))+((path==null)?"":("; path="+path))+((domain==null)?"":("; domain="+domain))+((secure==true)?"; secure":"");
}
// -->