var win=null;
  function printIt(printThis)
  {
    win = window.open();
    self.focus();
    win.document.open();
    win.document.write('<'+'html'+'><'+'head'+'><'+'style'+'>');
    win.document.write('body, td { font-family: Verdana; font-size: 10pt;}');
 	win.document.write('<'+'/'+'style'+'>');
 	win.document.write('<link rel="stylesheet" type="text/css" href="skins/skin_new/style_global.css" media="print, screen" />');
 	win.document.write('<link rel="stylesheet" type="text/css" href="skins/skin_new/style_schedule.css" media="print, screen" />')
 	win.document.write('<link rel="stylesheet" type="text/css" href="skins/skin_new/style_calendar.css" media="print, screen" />');
    win.document.write('<'+'/'+'head'+'><'+'body'+' style="background:#fff">');
    win.document.write(printThis);
    win.document.write('<'+'/'+'body'+'><'+'/'+'html'+'>');
    win.document.close();
    win.print();
    win.close();
  }