function MM_openBrWindow(theURL,winName,features) { //v2.0
  var W_Open;
		W_Open=window.open(theURL,winName,features);
		W_Open.focus();
}
function YM_slidWindow(theURL,winName,features) { //jimi
  var W_Open;
  W_Open=window.open(theURL,winName,"width=480,height=420");
  W_Open.focus();
  ww = 480;
  wh = 420;
  xp = (screen.width - ww ) / 2;
  yp = (screen.height - wh ) / 2.4;
  W_Open.window.moveTo(xp,yp);
}



