function launch_far_minisite() {  
var w = 980;
if (navigator.vendor == "Apple Computer, Inc.") {
	//var h = screen.height - 55;
	var h = 680;
} else {
	//var h = screen.height;
	var h = 680;
}

	var x = (screen.width/2)-(980/2);
	var y = ((screen.height/2)-(680/2))-30;

  window.open('http://mapr.org/far/main.html','main',"fullscreen=no,screenX="+x+",screenY="+y+",left="+x +",top="+y+",width="+w+",height="+h);  
}

