function mdwong_pop(path,pop_name,options)
{
	if(!options)
   {
options="width=788,height=484,location=yes,menubar=yes,toolbar=yes,scrollbars,resizable=yes,status=yes";
   }
	if(path)
   {
		if(!pop_name)
      {
			var n = path.split("/");
			var temp = n[n.length-1];
			n = temp.split(".");
			pop_name = n[0];
		}	
		mdwong_popwin = window.open(path,pop_name,options);
      var winObj = window.open(path,pop_name,options);
      if (winObj.focus) winObj.focus();
    }
}