function redirTimer(redirTime,redirURL) 
{ 
	self.setTimeout("self.location.href = '" + redirURL + "';",redirTime); 
}
function confirmLink(theLink,Msg,Query)
{

    is_confirmed = confirm(Msg);
    if (is_confirmed) {
        theLink.href += Query;
    }
    return is_confirmed;
} 
function submit_change(theOBJ)
{
	theOBJ.disabled = true;
	theOBJ.src = '';
}

function Go(id,url){
	self.location.href = url + document.getElementById(id).value;
}
 function redirTimer(redirTime,redirURL) 
{ 
	self.setTimeout("self.location.href = '" + redirURL + "';",redirTime); 
}

function OpenWindow(theURL,winName,width,height,scrollbars){
	var features = 'toolbar=no,resizable=no,status=no,scrollbars='+scrollbars+',width='+width+',height='+height+',left=1,top=1';
	myWindow = window.open(theURL,null,features);
	if (window.focus) {myWindow.focus()}
}

function select_find(id,find){	
	var obj = document.getElementById(id);
	if (find == false) obj.selectedIndex = 0;
	else 
	{
		for (var i = 0; i < obj.length; ++i)
  			if (obj[i].value == find)
    			obj.selectedIndex = i;
	}
}