	//----------------------------------------------------------------	
	//-- Copyright 2002 Tassadar Software				--
	//--								--
	//-- This code is copyrighted by Tassadar Software and is NOT	--
	//-- free to use whitout permisson. If you find anything on 	--
	//-- this page that you like and want to use, write a mail and 	--
	//-- ask for permisson to use the code.				--
	//--								--
	//-- tassadar.gladh.nu						--
	//----------------------------------------------------------------

	//-- declare variables	------------------------------------------
	var isIE4 = false;
	var isNN4 = false;
	var isW3C = false;
	var objectRef;
	var styleRef;
	var showProduct = false;
	
	//-- find active browser	----------------------------------
	isIE4 = document.all;
	if(!isIE4) {
		isNN4 = document.layers;
		isW3C = document.getElementsByTagName;
	}

	//-- set the oRef and styelRef	----------------------------------
	if(isNN4) {objectRef='document.layers'; styleRef=''}
	if(isIE4) {objectRef='document.all'; styleRef='.style'}
	if(isW3C) {objectRef='document.getElementsByTagName("*")'; styleRef='.style'}

	//-- get currect object	------------------------------------------
	function getObject(objectId) {
		return eval(objectRef + '("' + objectId + '")');
	}
	
	//-- hide current object	----------------------------------
	function hideObjectT(objectId) {
		//eval(objectRef + "['" + objectId + "']" + styleRef + ".visibility='hidden'")
		eval(objectRef + "['" + objectId + "']" + styleRef + ".display='none'")
	}


	//-- write out the loading page image	--------------------------




