<!--
var platform;
var browser;
var version;
var adjWidth;
var adjHeight;
var winSize,winOptions;
var isie=0;
var isnc=0;
var ismac=0;
var ispc=0;

version = parseInt(navigator.appVersion);

if(navigator.userAgent.indexOf('Win') == -1) {
       platform = 'Macintosh';
	ismac=1;
} else {
        platform = 'Windows';
	ispc=1;
}

if(navigator.appName.indexOf('Netscape') == -1) {
       browser = 'IE';isie=1;
} else {
       browser = 'Netscape';
	isnc=1;
}

function maxopen(theUrl,winName){
if (ismac){
	openmac(theUrl,winName);
	}
	else 
	if(ispc){
	openwin(theUrl,winName);
	}
	else {}
}

function openwin(winUrl,winName) {
	var winAttr = 'directories=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=1,top=0,left=0,' ;
	if ((document.all)||(document.layers)) {
	if (document.all) winAttr += 'width=' + (screen.availWidth-12) + ',height=' + (screen.availHeight-58) ;
	else
	if (document.layers) winAttr += 'OuterWidth=' + screen.availWidth + ',OuterHeight=' + screen.availHeight ;
	TheSite = window.open(winUrl,winName,winAttr) ;
	}
	else 
	{
	winAttr+=",width=800,height=600";
	window.open(winUrl,winName,winAttr);
	}
}


function openmac(theUrl,winName) {
	var W=screen.availWidth;
	var H=screen.availHeight;

	

	if (isie) { H+=10; W+=2;}
	else if (isnc) {H-=30;W-=10}
	s = ",width="+W+",height="+H;

	
	if (isie) {
		helen = window.open( theUrl , winName, "fullscreen=0,toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1"+s)
		helen.resizeTo( Math.ceil( W ), Math.ceil( H ) );
		helen.moveTo  ( 0, 0 );
	}
	else    
		{
		var helen = window.open(theUrl, winName, "toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,left=0,top=0,screenX=0,screenY=0"+s, true)
}
	helen.focus();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->