﻿//
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function openwin(src, w_name, w_width, w_height, w_opt)
{
	if(!w_opt)    w_opt    = 'resizable=1,scrollbars=1';

	if(!w_width)  w_width  = 700;
	if(!w_height) w_height = 500;

	w_opt += ',width='+w_width+',height='+w_height;

	if(typeof(screen) != 'undefined')
	{
		w_left   = parseInt((screen.width-w_width)/2);
		w_top    = parseInt((screen.height-w_height)/2);

		w_opt += ',left='+w_left+',top='+w_top;
	}

	wobj = window.open(src, w_name, w_opt);
	wobj.focus();

	return wobj;
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


