// functions.js

function askconfirm(txt) {
    return confirm(txt);
}
//-->

function jumpMenu(el){ 
url = el.options[el.selectedIndex].value; 
if(url == '#'){ 
   return false; 
   } 
   else { 
   window.open(url,'_self'); 
   } 
} 

function spamCheck() 
{
	if(document.getElementById('spamcheck-tr')) 
	{
		document.getElementById('spamcheck').value = 'nope';
		document.getElementById('spamcheck-tr').style.display = 'none';
	}
}
