// JavaScript Document
function highlight(link) 
{
	document.getElementById(link).style.textDecoration = "underline";
}
function unhighlight(link) 
{
	document.getElementById(link).style.textDecoration = "none";
}
function redirectSecure()
{
	if (document.location.protocol != "https:")
	{
		var oldURL = window.location.hostname + window.location.pathname+window.location.search;
		var newURL = "https://" + oldURL;
		window.location = newURL;
	}
}
function redirectUnsecure()
{
	if (document.location.protocol != "http:")
	{
		var oldURL = window.location.hostname + window.location.pathname+window.location.search;
		var newURL = "http://" + oldURL;
		window.location = newURL;
	}
}
function switchTab(tab) {
	//CLEAR TABS
	var tabsdiv = document.getElementById('productTabs');
	var tabs = tabsdiv.getElementsByTagName('li');
	for (x=0; x<tabs.length; x++) {
		tabs.item(x).className = "";
	}
	//CLEAR TAB CONTENT
	var tabsContent = document.getElementById('tabsContent').getElementsByTagName('div')
	for (x=0; x<tabsContent.length; x++) {
		tabsContent.item(x).style.display = "none";
	}
			
	document.getElementById(tab).className = "selected";
	document.getElementById(tab + "Content").style.display = "block";
}
