// new window functions
function itbOpen(page,w,h) {
	window.open(page,'','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width='+w+',height='+h);
}

function w(page) {
  //itbOpen(page,<%= guideSystem.getProperty("itbyus.newwin.width", "600") %>,<%= guideSystem.getProperty("itbyus.newwin.height", "400") %>);
}

function doc(page) {
  var urlS = '<%= guideSystem.getRootDir() %>' + page;
  w(urlS);
}