﻿// JScript 文件

/////////////////////////////////////////////////////////////////////
function openPopup(url,x,y){
  if (!x){x=700;};
  if (!y){y=450;};
  
  var left;
    var top;  
  left = (screen.width - x)/2;
  top = (screen.height - y)/2;
  
  window.open(url,null,'toolbar=yes,menubar=no,resizable=yes,scrollbars=yes,width='+x+',height='+y+',left='+left+',top='+top);
}

/////////////////////////////////////////////////////////////////////
function openPopupFixed(url,x,y){
  if (!x){x=700;};
  if (!y){y=450;};

    var left;
    var top;  
  left = (screen.width - x)/2;
  top = (screen.height - y)/2;

  //window.open(url,null,'toolbar=no,status=no,menubar=no,resizable=yes,scrollbars=no,width='+x+',height='+y)
  window.open(url,null,'toolbar=no,status=no,menubar=no,resizable=yes,scrollbars=no,width='+x+',height='+y+',left='+left+',top='+top);
  //window.open(url,null,'toolbar=no,status=no,menubar=no,resizable=yes,scrollbars=no,width='+x+',height='+y);
}



function RedrawLinkStyle(linkId)
{
    var link = document.getElementById(linkId);
    
    if(link==null)
        return;
        
    alert(link.Property.Style);
}
