/* ---------------------------------------------------------------------
COPYRIGHT SPORTSBIKESHOP LTD. ALL RIGHTS RESERVED.
ALL CODE IS FULLY PROTECTED BY COPYRIGHT LAWS AND INTERNATIONAL TREATY
PROVISIONS AND IS CONSIDERED A TRADE SECRET BELONGING TO THE COPYRIGHT HOLDER.

ANY UNAUTHORIZED REPRODUCTION OR DISTRIBUTION OF THIS CODE IN PART
OR IN ITS ENTIRETY IS STRICTLY PROHIBITED.
----------------------------------------------------------------------*/

ns = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3));
ie = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4));

function openWindow(url)
{
	if ((ns))window.open(url,"displayWindow","toolbar=no,width=100,height=100,left=0,top=0,directories=no,status=no,scrollbars=no,resizable=yes,menubar=no");
	if ((ie))window.open(url,"displayWindow","type=fullWindow,toolbar=no,width=100,height=100,left=0,top=0,directories=no,status=no,scrollbars=no,resizable=yes");
}

function openThawte(url)
{
	if ((ns))window.open(url,"displayWindow","toolbar=no,width=500,height=550,left=0,top=0,directories=no,status=no,scrollbars=no,resizable=no,menubar=no");
	if ((ie))window.open(url,"displayWindow","type=fullWindow,toolbar=no,width=500,height=550,left=0,top=0,directories=no,status=no,scrollbars=no,resizable=no");
}

function sendQuery(loc)
{
	if(loc == 'home')
	{
		term = query_home.value.toUpperCase();
	}
	else
	{
		term = query.value.toUpperCase();
	}
	term = term.replace(' ', '+');
	loc = 'http://www.sportsbikeshop.co.uk/motorcycle_parts/login/' + term
	document.location = loc;
}

function showhide(layer_ref)
{
	if(document.all)
	{
		if(eval( "document.all." + layer_ref + ".style.display") == 'none')
		{
			state = 'block';
			tab = 'tab_details_hide'
		}
		else
		{
			state = 'none';
			tab = 'tab_details'
		}
		eval( "document.all." + layer_ref + ".style.display = state");
		if(layer_ref == 'box_details')
		{
			document.images["tab_details"].src = "http://www.sportsbikeshop.co.uk/images/" + tab + ".gif";
		}
	}
	if(document.layers)
	{
		if(document.layers[layer_ref].display == 'none')
		{
			state = 'block';
			tab = 'tab_details_hide'
		}
		else
		{
			state = 'none';
			tab = 'tab_details'
		}
		document.layers[layer_ref].display = state;
		if(layer_ref == 'box_details')
		{
			document.images["tab_details"].src = "http://www.sportsbikeshop.co.uk/images/" + tab + ".gif";
		}
	}
	if(document.getElementById && !document.all)
	{ 
		hza = document.getElementById(layer_ref);
		if(hza.style.display == 'none')
		{
			state = 'block';
			tab = 'tab_details_hide'
		}
		else
		{
			state = 'none';
			tab = 'tab_details'
		}
		hza.style.display = state;
		if(layer_ref == 'box_details')
		{
			document.images["tab_details"].src = "http://www.sportsbikeshop.co.uk/images/" + tab + ".gif";
		}
	}
}

function favorites()
{
	logFav = new Image();
	logFav.src = "http://www.sportsbikeshop.co.uk/bookmark.php";
	
	var url = 'http://www.sportsbikeshop.co.uk/#BOOKMARK';
	var title = 'SPORTSBIKESHOP';
	
	if(window.sidebar)
	{
		window.sidebar.addPanel(title, url, "");
	}
	else if( window.external )
	{
		window.external.AddFavorite( url, title);
	}
	else if(window.opera && window.print)
	{
		return true;
	}
}

function changeFontSize(size)
{
	document.getElementsByTagName("body")[0].style.fontSize = size + "px";
}