
/* 
	mf:
	change appearance and size of the pop-up window below for MS and non-MS browser 
	defaults width=400, height=200
*/
function mf_winlg(txt){
 if(navigator.appCodeName=="Mozilla" && navigator.appVersion>="3.0"){
  look=window.open(txt,"win","width=830,height=550,moveTo(0,0),scrollbars=yes,status=yes,toolbar=no,locationbar=no");
  look.focus();}
 else{
  look=window.open(txt,"win","width=830,height=550,moveTo(0,0),resizable=no,status=no,locationbar=no,menubar=no");
}}
 