<!--	// Submit only once
function submitonce(theform)
{
//if IE 4+ or NS 6+
	if (document.all||document.getElementById){
	//screen thru every element in the form, and hunt down "submit" and "reset"
	for (i=0;i<theform.length;i++)
	{
		var tempobj=theform.elements[i]
		if(tempobj.type.toLowerCase()=="submit"||tempobj.type.toLowerCase()=="reset")
		//disable em
		tempobj.disabled=true
	}
	}
}


// -->
<!--    // Menu hover control
var t
t = false 
function hoverout(v) {
	if (document.all) {
		t = setTimeout("setColor('tr', "+ v +", '#FFC900')",100)
		t = setTimeout("setColor('tr', "+ v +", '#FFBF00')",140)
		t = setTimeout("setColor('tr', "+ v +", '#FFB400')",180)
		t = setTimeout("setColor('tr', "+ v +", '#FFAA00')",220)
		t = setTimeout("setColor('tr', "+ v +", 'transparent')",260)
		}
	}
function setColor(tag, v, co) {
	if (lastn != v) document.all[tag + v].style.backgroundColor = co
	}
lastn = -1
function colorRoll(tag, i, v){
	if (document.all){
		if (i==1){
			lastn = v
			document.all[tag + v].style.backgroundColor = '#FFD700'
			}
		if (i==0){
			lastn = -1
			hoverout(v)
			}
		}
	}
// -->
<!--	// Pop-up window
function viewPopup(myurl,vwidth,vheight)
{
	var place = "width="+ vwidth +",height="+ vheight +",top="+ (screen.availHeight-vheight)/ 2 +",left="+ (screen.availWidth-vwidth)/2 +",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,hotkeys=0";
	window.open(myurl,'popup',place);	
}
// -->
<!--  // Blink effect to Internet Explorer, with a “blink” style sheet and associated blinking effect in JavaScript (the <BLINK> tag)

function doBlink() 
{var blink = document.all.tags("BLINK")
for (var i=0; i<blink.length; i++)
blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : ""}

function startBlink() 
{if (document.all)
setInterval("doBlink()",1000)}

window.onload = startBlink;

//-->