
// function used to open word, pdf, xls, ppt docs in a new window
function openNewWindow(href) {
  var win = window.open(href,'newWindow','top=0,left=0,height=400,width=700,location=yes,scrollbars=yes,resizable=yes,toolbar=yes,menubar=yes,status=yes,directories=yes');
}
