// JavaScript Document

function despammail(strUser, strDomain){
	if (!document.location) return true; // If no Javascript then use the address AT whatever.com
	var thisaddress = "mailto:" + strUser + "@" + strDomain;
	document.location = thisaddress;
	return false;
}

 function clean(field) {
        field.value = '' ;
 }
 				
function openNew(page,x,y){
var page=page;
var x=x;
var y=y;  /*, toolbar=1*/
window.open(page,'','resizable=1,scrollbars=1,width='+x+',height='+y+'');
return false;
}

function showHide(inID) { 
	if (document.getElementById(inID).style.display == 'none') 
	{ document.getElementById(inID).style.display = 'block'; } 
		else { document.getElementById(inID).style.display = 'none'; } 
		}