	var strSignIn = "\n	<div id=\"signin_window\">\n";
		strSignIn += "		<h3><a href=\"#\" onclick=\"document.getElementById('signin_window').style.display = 'none'; return false;\"><img src=\"/images/button_close.gif\" border=\"0\" width=\"16\" height=\"16\" /></a>Sign In </h3>\n";
		strSignIn += "			<div class=\"signin_form\">\n";
		strSignIn += "				European Beauty Club members, sign in with your email address and password. To become an new member, click the 'Create an Account' menu item.\n";
		strSignIn += "				<form action=\"/ebc/signin_w.php\" method=\"post\" name=\"frmSignin\">\n";
		strSignIn += "					<label>Email: </label> <input class=\"box\" type=\"text\" name=\"txtEmail\">\n";
		strSignIn += "					<div class=\"formclear\"></div>\n";
		strSignIn += "					<label>Password: </label> <input class=\"box\" type=\"password\" name=\"pwdPassword\">\n";
		strSignIn += "					<div class=\"formclear\"></div>\n";
		strSignIn += "					<label>&nbsp;</label>\n";
		strSignIn += "					<input type=\"checkbox\" name=\"chkRemember\" value=\"y\" /> Remember Me";
		strSignIn += "					<div class=\"formclear\"></div>\n";
		strSignIn += "					<label>&nbsp;</label> <input type=\"image\" src=\"/images/button_signin.gif\" />\n<div style=\"clear: both;\">&nbsp;</div>\n";
		strSignIn += "					<label>&nbsp;</label> <a href=\"/ebc/forgotpassword.php\">Forgot your password?</a>\n";
		strSignIn += "				</form>\n";
		strSignIn += "			</div>\n";
		strSignIn += "		</div>";

	
	var initSignin = function() {
		var otherEl = document.getElementById('other');
		otherEl.innerHTML = strSignIn;
	}

	
	var showSignin = function(el) {
		var pos = getPosition(el);
		var si = document.getElementById("signin_window");

		si.style.display = "block";
		si.style.top = (pos.y + 25) + "px";
		si.style.left = (pos.x - (si.offsetWidth - 10)) + "px";

		document.frmSignin.txtEmail.focus();
		return false;
	}
