<!--
function popUp(Url,Width,Height,WinName){
  var popUpWin;
  if(WinName==undefined){WinName='';}
  var windowProperties = 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + Width + ',height=' + Height + ',left=50,top=50';
  popUpWin = window.open(Url,WinName,windowProperties);
  popUpWin.focus();
  return popUpWin;
}

function popUpScale(Url,Scale,WinName){
  var Width = 750;
  var Height = 650;
  if(window.screen){
    Width = window.screen.availWidth*Scale/100;
    Height = window.screen.availHeight*Scale/100;
  }
  popUp(Url,Width,Height,WinName);
}
//End -->