function submitAuth() {
	siteUrl = "www.chemistryclub.net";
	protocol = "http://";
	if(window.location.hostname == siteUrl) {
		protocol = "https://";
	} 

	document.form.action=protocol + window.location.hostname + "/pc/auth.jsp";
	return true;
}