// JavaScript Document
var newwin;

function centerwin () {
		 screen_height = window.screen.availHeight; 
		 screen_width = window.screen.availWidth; 
		 left_point = parseInt(screen_width/2)-(827/2); 
		 top_point = parseInt(screen_height/2)-(290/2); 
		 setTimeout('newwin.moveTo(left_point,top_point)',100); void(0);
		 }
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
		 
function launchwin(winurl,winname,winfeatures)
{
	
	newwin = window.open(winurl,winname,winfeatures);
	
	if(javascript_version > 1.0)
	{
		newwin.focus();
		centerwin();
	}
	
}