function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function win_open(where, win_name) {
	win_name = window.open(where, win_name, 'menubar=no,scrollbars=yes,resizable=yes,width=925,height=625');
	
	try { win_name.focus(); }
	catch(e) {}
}
//
function aerial_win_open(win_name, where, type_val) {
	var win_type = new Array();
	horizpos = (screen.width/2) - 380 + "px";
	

	win_type[0]="menubar=no,scrollbars=no,resizable=no,width=760,height=500,left = horizpos";
	
	win_name = window.open(where, win_name, win_type[type_val]);
	win_name.focus();
}
// JavaScript Document
function avail_open(win_name, where, type_val) {
	var win_type = new Array();

	win_type[0]="menubar=yes,scrollbars=yes,resizable=yes,width=700,height=500";	
		
	win_name = window.open(where, win_name, win_type[type_val]);
	win_name.focus();
}
//