/* --------------------------------------------------
olliffs.com

Randanet.com

javascript file - 019/11/2005

written by Nick Fox - quixand.co.uk

fixed width with liquid effect

MADE IN THE U.K.
----------------------------------------------------- */
onload = function fixh()
	{
		if (!(document.getElementById('centrecolumn')) )
			{
				alert("content div does not exist");
				return false;
			} 
		else
			{
				var lh = document.getElementById('leftcolumn').offsetHeight;
				var rh = document.getElementById('centrecolumn').offsetHeight;
				var nh = Math.max(lh, rh);
				document.getElementById('centrecolumn').style.height = nh+"px";
				document.getElementById('leftcolumn').style.height = nh+"px";
				
				//alert("divs resized. left height =" + lh + " right height = " + rh + " nominal height = " + nh);
			}
	}
/* ---------------------- disable css for plain text version --------------------------------------*/


function changeCSS(nr)
{
	if (document.getElementsByTagName)
		x = document.getElementsByTagName('link');
	else if (document.all)
		x = document.all.tags('link');
	else
	{
		alert('This script does not work in your browser');
		return;
	}
	nr--;
	for (var i=0;i<x.length;i++)
	{
		dis = !(i == nr);
		x[i].disabled = dis;
	}
}
function sending()
{
	var divsending = document.getElementById("sending");
	divsending.style.display=("block");
}
