function trim(value)
{	return value.replace(/^\s+/g,'').replace(/\s+$/g,'')
}
function nonbsp(value)
{	if(value=="&nbsp;")
		return ""
	return value
}
function submitSearch(val)
{	$('#search'+val).submit();
	return false;
}
function clickCount(id)
{	$.post("/web/clickcount", { id: id})
}
$(document).ready(function(){
	$('.cont').click(function(){
		window.open("/contact/index.php","Contact","menubar=no,width=1,height=1,toolbar=no");
		//window.location={href:"contact.php",target:"blank"}
	})
})