// For showing the smaller popup help window with help text inside.
function OpenPopup(file) { 
 features = 
    'toolbar=no,location=no,directories=no,status=no,menubar=no,' +
    'scrollbars=yes,resizable=no,width=300,height=400' 
 Help_Popup = window.open (file,"TeamSYNC_HELP_POPUP",features) 
 Help_Popup.focus()
 } 
 