<!--

function cover_DoFSCommand(cmd,args){
   dg_group_news_release_DoFSCommand(cmd,args);
}

function dg_group_news_release_DoFSCommand(cmd,args){

var strType = args.toString();

//strType = strType.substr(0,strType.length - 1);



  if (strType === '') {

	location.href = cmd;

  }

  else if (strType === 'NewWin') {

    window.open(cmd,"","");

  }

  else if (strType === 'KsP') {

    window.open(cmd,"",'width=800,height=600,status=no,scrollbars=no,directories=no,menubar=no,resizable=no,toolbar=no');

  }

  else if (strType === 'HtP') {

    window.open(cmd,"",'width=800,height=600,status=no,scrollbars=no,directories=no,menubar=no,resizable=no,toolbar=no');

  }

  else if (strType === 'RgP') {

    window.open(cmd,"",'width=800,height=650,status=no,scrollbars=no,directories=no,menubar=no,resizable=no,toolbar=no');

  }

  else{

  }

}

-->