// JavaScript Document

<!--
function openHelp() { 
  window.open('/help/helpFAQ.jsp','help','width=520,height=600,scrollbars=yes,resizable=yes');
}
function openContact() { 
  window.open('/help/contactus.jsp','ContactUs','width=520,height=600,scrollbars=yes,resizable=yes');
}
function openPrivacy() { 
  window.open('/help/privacypolicy.jsp','PrivPolicy','width=520,height=600,scrollbars=yes,resizable=yes');
}
function openTerms() { 
  window.open('/help/terms.jsp','Terms','width=520,height=600,scrollbars=yes,resizable=yes');
}
function openPopup(page) { 
  window.open('/help/'+page+'.jsp','Terms','width=520,height=600,scrollbars=yes,resizable=yes');
}
function openDesktop(id,size) { 
	window.open("downloads_pop.jsp?id="+id+"&size="+size, 'getDesktops', 'width=600, height=250, left=1, top=1, scrollbars=yes, resizable=yes');
}



function closeWindow() { 
  window.close;
}

//-->