startList = function() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

function showShopCart()
{
	x = document.getElementById("cart_link");
	y = document.getElementById("shopcartbody");
	
	var curStatus;
	
	curX = findPosX(x);
	curY = findPosY(x);

	//alert(comWidth);
	//alert(comHeight);
	curStatus = y.style.display;

		for(i=0;i<document.forms.length;i++)
		{
			var theForm = document.forms[0];
			//alert(theForm.elements.length);
			for(p=0;p<theForm.elements.length;p++)
			{
				//alert(theForm.elements[p].type);
				if(theForm.elements[p].type == 'select-one')
				{
					if(curStatus == 'none')
					theForm.elements[p].style.display = 'none';
					else
					theForm.elements[p].style.display = '';
				}
			}
		}


	if(curStatus == '')
	{
		//x.innerHTML = "Shopping Cart";
		y.style.display = 'none';
	}
	else
	{
		//x.innerHTML = "Hide Shopping Cart";
		y.style.display = '';
	}
	
	if(navigator.appName == 'Microsoft Internet Explorer')
	{
		y.style.top = curY + 30;
		y.style.left = curX - 220;
	}
	else
	{
		y.style.top = curY + 30 + "px";
		y.style.left = curX - 220 + "px";
	}
	return true;
}


function showMenu(comId)
{
	x = document.getElementById(comId);
	x.className = 'mItemOver ' + comId +'Over';
	if(comId == 'newsLinkDiv' || comId == 'transDiv' || comId == 'memLinkDiv' || comId == 'appLinkDiv' || comId == 'docLinkDiv' || comId == 'prdLinkDiv' || comId == 'catLinkDiv' || comId == 'tempDiv' || comId == 'supportmenu' || comId == 'catmenu' || comId == 'actcatmenu' || comId == 'actsupportmenu')
	{
		chkmouseover(comId);
		//alert(document.forms.length);
		for(i=0;i<document.forms.length;i++)
		{
			var theForm = document.forms[0];
			//alert(theForm.elements.length);
			for(p=0;p<theForm.elements.length;p++)
			{
				//alert(theForm.elements[p].type);
				if(theForm.elements[p].type == 'select-one')
				theForm.elements[p].style.display = 'none';
			}
		}
	}
	return true;
}

function hideMenu(comId)
{
	x = document.getElementById(comId);
	x.className = comId;
	if(comId == 'newsLinkDiv' || comId == 'transDiv' || comId == 'memLinkDiv' || comId == 'appLinkDiv' || comId == 'docLinkDiv' || comId == 'prdLinkDiv' || comId == 'catLinkDiv' || comId == 'tempDiv' || comId == 'supportmenu' || comId == 'catmenu' || comId == 'actcatmenu' || comId == 'actsupportmenu')
	{
		chkmouseout(comId);
		//alert(document.forms.length);
		for(i=0;i<document.forms.length;i++)
		{
			var theForm = document.forms[0];
			for(p=0;p<theForm.elements.length;p++)
			{
				if(theForm.elements[p].type == 'select-one')
				theForm.elements[p].style.display = '';
			}
		}
	}
	return true;
}


function notChecked(obj,msg)
{
	var passObj = obj;
	var passMsg = msg;
	if(passObj.checked == false)
	{
		alert(msg);
		passObj.focus();
		return false;
	}
	return true;
}

function notEmptyFocus(obj,msg)
{
	var passObj = obj;
	var passMsg = msg;
	if(!passObj.value)
	{
		alert('Please enter a value for ' + msg + ' Field !!');
		return false;
	}
	return true;
}

function notEmpty(obj,msg)
{
	var passObj = obj;
	var passMsg = msg;
	if(!passObj.value)
	{
		alert('Please enter a value for ' + msg + ' Field !!');
		passObj.focus();
		return false;
	}
	return true;
}

function notValidRange(obj,start,end,msg)
{
	var passObj = new String(obj.value);
	var passMsg = msg;
	if(passObj.length < 4 || passObj.length > 14)
	{
		alert('Your ' + msg + ' has to be between ' + start + ' and ' + end + ' characters!!');
		obj.focus();
		return false;
	}
	return true;
}

function notCurrency(obj,msg)
{
	var passObj = obj.value;
	var passMsg = msg;
	var checkOK = "1234567890.";
	var matched = 0;
	for (p = 0;  p < passObj.length;  p++)
	{
		matched = 0;
		for (j = 0;  j < checkOK.length;  j++)
		{
			if(passObj.charAt(p) == checkOK.charAt(j))
			{
			matched = 1;
			break;
			}
		}
		if(matched==0)
		{
			alert("Please enter a valid " + msg);
			obj.focus();
			return false;
		}
	}
	return true;
}

function notNumber(obj,msg)
{
	var passObj = obj.value;
	var passMsg = msg;
	var checkOK = "1234567890";
	var matched = 0;
	for (p = 0;  p < passObj.length;  p++)
	{
		matched = 0;
		for (j = 0;  j < checkOK.length;  j++)
		{
			if(passObj.charAt(p) == checkOK.charAt(j))
			{
			matched = 1;
			break;
			}
		}
		if(matched==0)
		{
			alert("Please enter a valid " + msg);
			obj.focus();
			return false;
		}
	}
	return true;
}

function notPosNumber(obj,msg)
{
	var passObj = obj.value;
	var passMsg = msg;
	var checkOK = "1234567890";
	var matched = 0;
	for (p = 0;  p < passObj.length;  p++)
	{
		matched = 0;
		for (j = 0;  j < checkOK.length;  j++)
		{
			if(passObj.charAt(p) == checkOK.charAt(j))
			{
			matched = 1;
			break;
			}
		}
		if(matched==0)
		{
			alert("Please enter a valid " + msg);
			obj.focus();
			return false;
		}
	}
	if(passObj <= 0)
	{
			alert("Please enter a valid " + msg);
			obj.focus();
			return false;
	}
	return true;
}

function notPhone(obj,msg)
{
	var passObj = obj.value;
	var passMsg = msg;
	var checkOK = "1234567890-()+ ";
	var matched = 0;
	for (p = 0;  p < passObj.length;  p++)
	{
		matched = 0;
		for (j = 0;  j < checkOK.length;  j++)
		{
			if(passObj.charAt(p) == checkOK.charAt(j))
			{
			matched = 1;
			break;
			}
		}
		if(matched==0)
		{
			alert("Please enter a valid " + msg);
			obj.focus();
			return false;
		}
	}
	return true;
}

function notCompare(obj,secobj,msg)
{
	var passObj = obj;
	var passObjSec = secobj;
	var passMsg = msg;
	if(passObj.value != passObjSec.value)
	{
		alert(msg);
		passObjSec.focus();
		return false;
	}
	return true;
}
function notSelected(obj,msg)
{
	var passObj = obj;
	var passMsg = msg;
	if(!passObj.value)
	{
		alert('Please select a value for ' + msg + ' Field !!');
		passObj.focus();
		return false;
	}
	return true;
}

function notTwoDecimalCurrency(obj,msg)
{
	var passObj = obj.value;
	var passMsg = msg;
	var checkOK = "1234567890.";
	var matched = 0;
	var afterDot = 0;
	for (p = 0;  p < passObj.length;  p++)
	{
		matched = 0;
		if(passObj.charAt(p) == '.')
		{
			afterDot = (passObj.length - p) - 1;
			if(afterDot > 0 && afterDot < 3)
			return true
			else if(afterDot == 0)
			{
				alert("Invalid . (dot) in price !!!");
				obj.focus();
				return false;
			}
			else if(afterDot > 2)
			{
				alert("There has to be only 2 decimal places !!!");
				obj.focus();
				return false;
			}
		}
	}
	return true;
}


function noFileSelected(obj,msg)
{
	var passObj = obj;
	var passMsg = msg;
	if(!passObj.value)
	{
		alert('Please select ' + msg + ' !!');
		passObj.focus();
		return false;
	}
	return true;
}

function notRadioSelected(obj,msg)
{
	var passObj = obj;
	var passMsg = msg;
	var noOfEle = obj.length;
	var found = 0;
	
	for(i=0;i<noOfEle;i++)
	{
		if(obj[i].checked == true)
		{
			found = 1;
			break;
		}
	}
	if(found==0)
	{
		alert('Please select an option for ' + msg);
		return false;
	}
	return true;
}

////////////////////////////////////////////////////////////////////
// XML functions and AJAX things
////////////////////////////////////////////////////////////////////
var xmlHttp

function retSecurityQuestion(email)
{
	xmlHttp = GetXmlHttpObject()
	if(xmlHttp==null)
	{
		alert("Browser does not support HTTP Request");
		return false;
	}
	
	var urlPass = "retSecurityQuestion.php";
	urlPass = urlPass + "?e=" + email;
	urlPass = urlPass + "&sid="+Math.random();
	//alert(urlPass);
	xmlHttp.onreadystatechange = fillSecurityQuestion;
	urlPass = new String(urlPass);
	xmlHttp.open("GET",urlPass);
	xmlHttp.send(null);
	return true;
}

function fillSecurityQuestion(glrId)
{
	if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
	{
		document.getElementById("quearea").innerHTML = xmlHttp.responseText;
	}

	return true;
}

function GetXmlHttpObject()
{ 
	var objXMLHttp=null;
	if(window.XMLHttpRequest)
	{
		objXMLHttp=new XMLHttpRequest();
	}
	else if(window.ActiveXObject)
	{
		objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	return objXMLHttp;
}


////////////////////////////////////////////////////////////////////
// menu functions
////////////////////////////////////////////////////////////////////

function chkmouseover(passobj)
{
	x = document.getElementById(passobj);
	curX = findPosX(x);
	curY = findPosY(x);
	//alert("curX " + curX);
	//alert("curY " + curY);

	y = document.getElementById('menu' + passobj);

	y.style.display = '';

	if(passobj == 'catmenu' || passobj == 'supportmenu' || passobj == 'actcatmenu' || passobj == 'actsupportmenu')
	{
		if(navigator.appName == 'Microsoft Internet Explorer')
		{
			y.style.top = curY + 108;
			y.style.left = curX - 222;
		}
		else
		{
			y.style.top = (curY + 108) + "px";
			y.style.left = (curX - 222) + "px";
		}
	}
	else
	{
		if(navigator.appName == 'Microsoft Internet Explorer')
		{
			y.style.top = curY + 21;
			y.style.left = curX - 1;
		}
		else
		{
			y.style.top = (curY + 25) + "px";
			y.style.left = (curX + 0) + "px";
		}
	}
	//alert(y.style.top);
	//alert(y.style.left);
}

function chkmouseout(passobj)
{
	y = document.getElementById('menu' + passobj);

	y.style.display = 'none';
}

function findPosX(obj)
{
	var curleft = 0;
	if (obj.offsetParent)
	{
		while (obj.offsetParent)
		{
			curleft += obj.offsetLeft
			obj = obj.offsetParent;
		}
	}
	else if (obj.x)
		curleft += obj.x;
	return curleft;
}

function findPosY(obj)
{
	var curtop = 0;
	if (obj.offsetParent)
	{
		while (obj.offsetParent)
		{
			curtop += obj.offsetTop
			obj = obj.offsetParent;
		}
	}
	else if (obj.y)
		curtop += obj.y;
	return curtop;
}

function screenWidth()
{
	if (self.innerWidth)
	{
		frameWidth = self.innerWidth;
		frameHeight = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientWidth)
	{
		frameWidth = document.documentElement.clientWidth;
		frameHeight = document.documentElement.clientHeight;
	}
	else if (document.body)
	{
		frameWidth = document.body.clientWidth;
		frameHeight = document.body.clientHeight;
	}
	return frameWidth;
}

function screenHeight()
{
	if (self.innerWidth)
	{
		frameWidth = self.innerWidth;
		frameHeight = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientWidth)
	{
		frameWidth = document.documentElement.clientWidth;
		frameHeight = document.documentElement.clientHeight;
	}
	else if (document.body)
	{
		frameWidth = document.body.clientWidth;
		frameHeight = document.body.clientHeight;
	}
	return frameHeight;
}

/////////////////////////////////////////////////////
/////////// PAGE LOADING BAR CODING /////////////////

function getScreenWidth() {
	var result = 2000;

	if (window.innerWidth) {
		// all except Explorer
		result = parseInt(window.innerWidth);
	} else if (document.documentElement && document.documentElement.clientWidth) {
		// Explorer 6 Strict Mode
		result = parseInt(document.documentElement.clientWidth);
	} else if (document.body) {
		// other Explorers
		result = parseInt(document.body.clientWidth);
	}
	if (isNaN(result)) {
		result = 2000;
	}
	return result;
}

function getScreenHeight() {
	var result = 2000;

	if (window.innerHeight) {
		// all except Explorer
		result = parseInt(window.innerHeight);
	} else if (document.documentElement && document.documentElement.clientHeight) {
		// Explorer 6 Strict Mode
		result = parseInt(document.documentElement.clientHeight);
	} else if (document.body) {
		// other Explorers
		result = parseInt(document.body.clientHeight);
	}
	if (isNaN(result)) {
		result = 2000;
	}
	return result;
}

function getScreenOffsetX() {
	var result = 2000;

	if (window.pageXOffset) {
		// all except Explorer
		result = parseInt(window.pageXOffset);
	} else if (document.documentElement && document.documentElement.scrollLeft) {
		// Explorer 6 Strict Mode
		result = parseInt(document.documentElement.scrollLeft);
	} else if (document.body) {
		// other Explorers
		result = parseInt(document.body.scrollLeft);
	}
	if (isNaN(result)) {
		result = 2000;
	}
	return result;
}

function getScreenOffsetY() {
	var result = 2000;

	if (window.innerHeight) {
		// all except Explorer
		result = parseInt(window.pageYOffset);
	} else if (document.documentElement && document.documentElement.scrollTop) {
		// Explorer 6 Strict Mode
		result = parseInt(document.documentElement.scrollTop);
	} else if (document.body) {
		// other Explorers
		result = parseInt(document.body.scrollTop);
	}
	if (isNaN(result)) {
		result = 2000;
	}
	return result;
}


function chkLoginForm(frm)
{
	if(!notEmpty(frm.email,"User Name"))
	return false;
	if(!notEmpty(frm.password,"Password"))
	return false;
	else
	return true;
}

function register_new(frm)
{
	//First Name, Last Name, E-mail, Password, Retype Password, Address-1, City, Zipcode, Country Code, Phone
	if(!notEmpty(frm.company_name,"Company Name"))
	return false;
	if(!notSelected(frm.prefix,"Title"))
	return false;
	if(!notEmpty(frm.first_name,"First Name"))
	return false;
	if(!notEmpty(frm.last_name,"Last Name"))
	return false;
	if(!notEmpty(frm.email,"E-mail"))
	return false;
	if(!notEmpty(frm.password,"Password"))
	return false;
	if(!notEmpty(frm.repassword,"Retype Password"))
	return false;
	else if(!notCompare(frm.password,frm.repassword,"Password doesn't match"))
	return false;
	if(!notEmpty(frm.address1,"Address-1"))
	return false;
	if(!notEmpty(frm.city,"City"))
	return false;
	if(!notEmpty(frm.zip,"Zipcode"))
	return false;
	if(!notEmpty(frm.city,"City"))
	return false;
	if(!notEmpty(frm.phone_country_code,"Country Code"))
	return false;
	else if(!notPhone(frm.phone_country_code,"Country Code"))
	return false;
	if(!notEmpty(frm.phone_number,"Phone Number"))
	return false;
	else if(!notPhone(frm.phone_number,"Phone Number"))
	return false;
	else
	return true;
}

function checkTLDs(frm,isReverse)
{
	var noOfTlds;
	frm = document.domain_selection_form1;
	noOfTlds = frm.nooftlds.value;
		
	for(i=0;i<noOfTlds;i++)
	{
		if(isReverse)
		eval("frm.chk_" + i + ".checked = false");
		else
		eval("frm.chk_" + i + ".checked = true");
	}

	return false;
}

function assignNameServers(frm)
{
	if(!notEmpty(frm.hostname_1,"Name Server - 1"))
	return false;
	if(!notEmpty(frm.hostname_2,"Name Server - 2"))
	return false;
	else
	{
		var NoOfDomains = frm.hidNoOfDomains.value;
		var comEleName = '';
		//var com
		//alert(NoOfDomains);
		for(i=0;i<NoOfDomains;i++)
		{
			comEleName = eval("frm.escape_dm_" + i + ".value");
			eval("frm.rd_dnshosting_" + comEleName + "[1].checked = true");
			x = document.getElementById("ns_" + comEleName);
			x.style.display = '';
			eval("frm.ns_hostname_1_" + comEleName + ".value = '" + frm.hostname_1.value + "'");
			eval("frm.ns_hostname_2_" + comEleName + ".value = '" + frm.hostname_2.value + "'");
		}
		return true;
	}
}

function check_domains(frm)
{

	if(!notEmpty(frm.domain_name,"Domain Name"))
		return false;

	var noOfTlds;
	var totalchecked;
	totalchecked = 0;
	noOfTlds = 10;
	
	for(i=0;i<noOfTlds;i++){
		if(eval("frm.tld[i].checked") == 'checked'){
			
			totalchecked = 1;
		}
		alert("checked!");
	}	
	
	if(totalchecked == 0){
		alert("Please select at least one domain extension!");
		return false;
	}
	
	return true;
}

function check_index_domains(frm,comBut)
{
	if(frm.domain_name.value == 'enter your domain name here'){
		frm.domain_name.value = '';
		return false;
	}
	frm.domain_name.value = removeSpaces(frm.domain_name.value);
	
	if(!notEmpty(frm.domain_name,"Domain Name"))
		return false;
	if(!notSelected(frm.tld,"Domain Extention"))
		return false;
	else if(comBut == 'R')
		document.getElementById('dm_action').value = 'register_new';
	else if(comBut == 'T')
		document.getElementById('dm_action').value = 'reg_transfer';
	else if(comBut == 'U')
		document.getElementById('dm_action').value = 'domain_pointer';

	document.domain_selection_form.submit();
	return true;
}

function removeSpaces(string) {
	var tstring = "";
	string = '' + string;
	splitstring = string.split(" ");
	for(i = 0; i < splitstring.length; i++)
	tstring += splitstring[i];
	return tstring;
}

function openURL(url) {
	window.location="index.php";	
}
function add_suggested_domains(frm)
{
	var noOfTlds;
	var totalchecked;
	noOfTlds = frm.no_of_sug_domains.value;
	totalchecked = 0;
		
	for(i=0;i<noOfTlds;i++)
	{
		comname = eval("frm.hid_" + i + ".value");
		if(eval("frm." + comname + ".checked") == true)
		totalchecked = 1;
	}
	
	if(totalchecked == 0)
	{
		alert("Please select atleast one domain extension/possible names you are interested in!");
		return false;
	}
	else
	{
		//x = document.getElementById("domainpage");
		//y = document.getElementById("preload");
		//y.style.display = '';
		//document.getElementById('action').value = 'add_suggested_domains';
		frm.action.value = 'add_suggested_domains';
		document.domain_suggestion_form.submit();
		//x.style.display = 'none';
	}
}

function remove_domains(frm)
{
	var noOfTlds;
	var totalchecked;
	var eleName;
	var splitArr;
	noOfTlds = frm.noOfOrdered.value;
	totalchecked = 0;
		
	for(p=0;p<frm.removedDomains.length;p++){
		if(eval("frm.removedDomains[p].checked") == 'checked'){
			alert("checked");s
		}
	}

	if(totalchecked == 0) {
		alert("Please select atleast one domain that you want to remove!\n\nPlease check the boxes appear right in the left corner.");
		return false;
	} else {
		frm.action.value = 'remove_domains';
		document.domain_selection_form.submit();
	}
	return true;
}

function order_domains(frm)
{
	var noOfTlds;
	var totalchecked;
	noOfTlds = frm.noOfOrdered.value;
	totalchecked = 0;
	
		
	for(p=0;p<frm.elements.length;p++)
	{
		if(frm.elements[p].type == 'hidden')
		{
			eleName = frm.elements[p].name;
			eleName = new String(eleName);
			splitArr = eleName.split("_");
			if(splitArr.length == 3 && splitArr[0] == 'hidordered')
			{
				comname = eval("frm." + eleName + ".value");
				if(eval("frm." + comname + ".checked") == true)
					totalchecked = 1;
			}
		}
	}
	
	//if(totalchecked == 0)
	//{
	//	alert("Please select atleast one domain that you want to order!");
	//	return false;
	//}
	//else
	//{
		//x = document.getElementById("domainpage");
		//y = document.getElementById("preload");
		//y.style.display = '';

		//document.getElementById('action').value = 'order_domains';
		frm.action.value = 'order_domains';
		document.domain_selection_form.submit();
		
		//x.style.display = 'none';
	//}
	return true;
}

function dnsOption(comid,frm)
{
	//alert(frm);
	//return false;
	var comval;
	x = document.getElementById("ns_" + comid);
	comval = eval("frm.rd_dnshosting_" + comid + "[0].checked");
	if(comval == true)
	x.style.display = 'none';
	else
	x.style.display = '';
	return true;
}

function disable_field(field,disable)
{
	if(typeof(field) != 'object')
	{
		return;
	}
	if(disable)
	{
		field.disabled = true;
		if (field.style)
		{
			if(field.type == 'text' || field.type == 'select-one' || field.type == 'password')
			{
				field.style.backgroundColor = '#F0F0F0';
				field.style.borderColor = '#B7B7C6';
				field.style.color = '#555555';
			}
		}
	}
	else
	{
		field.disabled = false;
		if (field.style)
		{
			if(field.type == 'text' || field.type == 'select-one' || field.type == 'password')
			{
				field.style.backgroundColor = '#FFFFFF';
				field.style.borderColor = '#B7B7C6';
				field.style.color = '#000000';
			}
		}
	}
}

//hostingagreement, agreement
function continue_order(frm)
{
	if(frm.agreement)
		if(!notChecked(frm.agreement,"You must accept Registrant's Terms & Conditions!"))
		return false;
	
	if(frm.hostingagreement)
		if(!notChecked(frm.hostingagreement,"You must accept Hosting Terms & Conditions!"))
		return false;

	//return confirm("You are going to place an order\n\nOnce you click 'Yes', your order will be placed as Pending.\n\nAre you sure you want to continue?");
	document.shopping_cart_form.submit();
	return true;
}

function chkContactUs(frm)
{
	if(!notEmpty(frm.txtName,"Full Name"))
	return false;
	if(!notEmpty(frm.txtEmail,"E-mail"))
	return false;

	if(!notSelected(frm.slProblem,"Problem"))
	return false;
	if(!notEmpty(frm.txtSubject,"Subject"))
	return false;
	if(!notEmpty(frm.txtProblem,"Problem"))
	return false;
	else
	return true;
}

function chkResources(frm)
{
	if(!notEmpty(frm.txtWebsite,"Website Name"))
	return false;
	if(!notEmpty(frm.txtWebsiteURL,"Website URL"))
	return false;

	if(!notSelected(frm.txtDesc,"Website Description"))
	return false;
	if(!notEmpty(frm.txtCheaperLink,"Link on your website"))
	return false;
	if(!notEmpty(frm.txtName,"Name"))
	return false;
	if(!notEmpty(frm.txtEmail,"E-mail"))
	return false;
	else
	return true;
}

function toggleState(countryCode){
	if(countryCode == 'AU'){
		document.register_new_form.state.disabled = false;
		document.register_new_form.state_alt.disabled = true;
	} else {
		document.register_new_form.state.disabled = true;
		document.register_new_form.state_alt.disabled = false;
	}
}

function toggleForm(div1,div2){
		showDiv(div1);
		hideDiv(div2);
}

function toggleDiv(div,status){
	alert("a" + div);
	//if(status.checked)
		//hideDiv(div);
	//else	
		showDiv(div);
}

function hideDiv(divName) {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(divName).style.display = 'none';
	} else {
		if (document.layers) { // Netscape 4
			document.hideShow.style.visibility = 'none';
	} else { // IE 4
		document.all.hideShow.style.display = 'none';
		}
	}
}

function showDiv(divName) {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(divName).style.display = '';
	} else {
		if (document.layers) { // Netscape 4
			document.hideShow.display = '';
	} else { // IE 4
		document.all.hideShow.style.display = '';
		}
	}
} 
