<!--

function sslhref(e)
{
	var nurl , reurl;
	nurl = location.href;

	if(e == "ssl")
	{
		if(nurl.substring(0,7) == "http://")
		{
			reurl = nurl.replace("http://", "https://");
			location.href = reurl;
		}
	}
	else
	{
		if(nurl.substring(0,8) == "https://")
		{
			reurl = nurl.replace("https://", "http://");
			location.href = reurl;
		}
	}
}
//-->
