function show_SSL()
{
	var isSSL = false;
	var currentLocation = document.URL;

	if (currentLocation.indexOf("https://") != -1)
	{
		isSSL = true;
	}

	if (isSSL)
	{
		var newLoc = currentLocation.substring(8, currentLocation.length);
	
		document.write('<p align="left" class="StandardTextLighter"><img src="/images/interface/ssl_on.gif" width=16 height=17 border=0> SSL Security is Enabled [ <a href="http://' + newLoc + '">Disable SSL</a> ]</p>');
	}
	else
	{
		var newLoc = currentLocation.substring(7, currentLocation.length);
	
		document.write('<p align="left" class="StandardTextLighter"><img src="/images/interface/ssl_off.gif" width=16 height=17 border=0> SSL Security is Not Enabled [ <a href="https://' + newLoc + '">Enable SSL</a> ]</p>');
	}
}
