// [MODULE-HEADER]
// *************************************************************************************************
//
// Name:				ShoWareFrontEndEnvironmentLogin.ascx.js
//
// Created:			2/13/2009 VisionOne AG, St Gallen  Fbe
// Modified:		2/13/2009 VisionOne AG, St Gallen  Fbe	: Creation
//
// *************************************************************************************************

// Does login using secure connection
function EnvironmentLogin_doSecureLogin(loginButtonId, postUrl)
{
	var form = document.forms[0];
	form.action = postUrl;	
	var eventTarget = document.all("__EVENTTARGET");
	eventTarget.value = loginButtonId;
	document.forms[0].submit();
	
}

