function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function popUp(page, name, w, h, is_scroll) { // pop up window
	bar = window.open(page.split(" ").join("%20"), (name == '' ? 'foo' : name), 'height='+h+',width='+w+',top='+ ((screen.height - h) / 2) +',left='+ ((screen.width - w) / 2) +',scrollbars='+ is_scroll +',resizable=yes');
	bar.focus();
}
