function visible( id, show ){
	document.getElementById(id).style.display = show;
}
function invisible( id, hide ){
	document.getElementById(id).style.display = hide;
}

function newwin(){
window.open("livesupport.html",null,"height=440,width=685,status=yes,toolbar=no,menubar=no,location=no");
return false;
}