<!--
function sendForm(){
	if(document.getElementById('txt_search').value != ""){
		document.getElementById('form_search').submit();
	}
}

function showsubmenu(sId) {
	document.getElementById("subnav_" + sId).style.visibility = "visible";
}
function hidesubmenu(sId) {
	document.getElementById("subnav_" + sId).style.visibility = "hidden";
}

function showError(sError, xPos, yPos) {
	$('#error .error_content').html(sError);
	//var iTargetY = ($(window).height() / 2) - ($('#error').height() / 2);
	$('#error').css('left', xPos - $('#error').width() + 66);
	$('#error').css('top', yPos - $('#error').height() + 10);
	$('#error').fadeIn(300);	
}
function hideError() {
	$('#error').fadeOut(300);	
}

$(function() {
	$('.toggleval').each(function(index) {
		$(this).focus(function() {
			if ($(this).val() == window[$(this).attr('id') + "dv"]) {
				$(this).val("");
			}
		});
		$(this).blur(function() {
			if ($(this).val() == "") {
				$(this).val(window[$(this).attr('id') + "dv"]);
			}
		});
	});
});
-->

