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

function popup(url,w,h){
	newwin = window.open(url,"new",'"toolbar=no,location=no,dirctory=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=0,width='+w+',height='+h+'"');
	newwin.focus();
}