var i=0;
var ie=(document.all)?1:0;
var ns=(document.layers)?1:0;
function initStyleElements()
{var a = document.pad;
if (ie)
{
a.text.style.backgroundColor="#FFCC00";
a.submit.style.backgroundColor="#D2D2D2";
a.submit.style.cursor="hand";
a.clear.style.backgroundColor="#D2D2D2";
a.clear.style.cursor="hand";
}
else return;
}

function LightOn(what)
{
	if (ie) what.style.backgroundColor = "#FFCC00";
	else return;
}

function LightOff(what)
{	if (ie) what.style.backgroundColor = "#D2D2D2";
	else return;
}
