// JScript File

 function GetDate(CtrlName)    
 {   
  	 var width = 270;
    var height = 300;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var windowFeatures = "toolbar=no,scrollbars=no,status=no,resizable=no,menubar=no,location=no,width=" + width + ",height=" + height + ",status,resizable,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
  ChildWindow = window.open('Calender.aspx?FormName='+ document.forms[0].name +'&CtrlName=' + CtrlName, "PopUpCalendar", windowFeatures);

     //ChildWindow = window.open('Calender.aspx?FormName='+ document.forms[0].name +'&CtrlName=' + CtrlName, "PopUpCalendar", "width=270,height=300,top=200,left=200,toolbars=no,scrollbars=no,status=no,resizable=no");    
 }   
 function CheckWindow()   
 { 
     ChildWindow.close();   
 }
 
 function Close()
 {
     window.close();
 }
 function GetDisclosure()    
 {   
      var lbl=arguments[0];
     ChildWindow = window.open('Disclosure.aspx?FormName=' + document.forms[0].name + '&lbl=' + lbl, "PopUpCalendar", "width=270,height=200,top=200,left=200,toolbars=no,scrollbars=yes,status=no,resizable=no");    
 }   
     
 


