// This function causes a help window to pop up on the Support page.

function help_popup(subject) { // 'subject' decides which help page to load

	var path = "support/support.htm"; // default ('general')

	switch (subject) {
		case "websiteos":
			path = "websiteos_en/websiteos.html";
			break;
		case "webmail":
			path = "webmail/webmail.html";
			break;
		default: // should be general help, but also error handle
			subject = "general";
	}
	
	window.open("http://help.websiteos.com/"+path,subject,"width=700,height=500,scrollbars=1"); // the general syntax, with vars applied
	
}