var getlhit = false;

function GetLevels()
	{
	var i = navigator.userAgent.indexOf("/");
	if ( i>-1)
		{
		level = parseFloat(navigator.userAgent.substring(i+1,navigator.userAgent.length))
	    }
	}


function popup1(anchor,x,y)
	{
	if (getlhit == false)
		{
		GetLevels();
		getlhit =true;
		}
	if (level < 3)
		{
		return true;
		}
popwin1 = window.open("", "popwindow1","width="+x+",height="+y+",toolbar=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,status=no");anchor.target = "popwindow1";
popwin1.location = anchor.href;

	if (level >= 3)
		{
		popwin1.focus();
		}
	return false;
}

