function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


// code to popup window
//onLoad="javascript:shortPopUp( 'filename.htm', 'popup', 320, 200 )"

function shortPopUp( url, name, width, height, scrollbars ) { 
	var top  = "50"; 
	var left = "50"; 
 
	if( scrollbars == null ) scrollbars = "0"; 
 
	str  = ""; 
	str += "resizable=1,titlebar=0,menubar=0,"; 
	str += "toolbar=0,location=0,directories=0,status=0,"; 
	str += "scrollbars=" + scrollbars + ","; 
	str += "width=" + width + ","; 
	str += "height=" + height + ","; 
	str += "top=" + top + ","; 
	str += "left=" + left; 
 
	window.open( url, name, str ); 
} 



