function popupper(theurl,winname,features) {
  
  if (!features) {
	features = "scrollbars=1,resizable=no,height=300, width=300";
  }
		
  msgWindow = window.open(theurl,winname,features);
  if(msgWindow != null && msgWindow.opener != null) msgWindow.opener=window;
  msgWindow.focus();
}

function popDic() {
URL = "/precast_dictionary-1";
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=1,statusbar=1,menubar=0,resizable=1,width=800,height=550');");
}