<!-- hide from old bowsers
//////////////////////////////////////////////
//
//
var TimerId = 0;
var bTimerId = 0;
//
//
function show(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=15; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}
//
//
function showmenu(id){
	
	if(bTimerId)
	{
		window.clearTimeout(bTimerId);
		bTimerId = null;
	}
	
	if(TimerId)
	{
		window.clearTimeout(TimerId);
		TimerId = null;
	}
	show(id);
}
//
//
function killmenu(){
	if(TimerId)
	{
		window.clearTimeout(TimerId);
		TimerId = null;
	}
	TimerId=setTimeout("show('')", 1100 );
	
}
//
//
function sshow(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=15; i++) {
		if (document.getElementById('ssmenu'+i)) {document.getElementById('ssmenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}

function showsmenu(id){
	
   if(TimerId)
	{
		window.clearTimeout(TimerId);
		TimerId = null;
	}
	if(bTimerId)
	{
		window.clearTimeout(bTimerId);
		bTimerId = null;
	}
	sshow(id);
}
//
//
function killsmenu(){
	/*if(bTimerId)
	{
		window.clearTimeout(bTimerId);
		bTimerId = null;
	}
	bTimerId=setTimeout("sshow('')", 1100 );*/
	if(TimerId)
	{
		window.clearTimeout(TimerId);
		TimerId = null;
	}
	TimerId=setTimeout("sshow('')", 1100 );
}
//
//
function SelectAll(id)
{
    document.getElementById(id).focus();
    /*document.getElementById(id).cut();*/
    document.getElementById(id).value="";
}
//-->endofhide