function emailProtectJavascript(user, domain, name) {
	document.write('<a href="mailto: ' + user + '&#64;' + domain + '">' + name + '</a>');
}

function displayWindow(url, width, height, name) {
	window.open(url,name,'width=' + width + ',height=' + height + ',name="name",resizable=0,scrollbars=no,menubar=no');
}

function displayPage(url, name, width, height, scrollvalue) {
	w = window.open(url, name, 'width='+width+', height='+height+', scrollbars='+scrollvalue+', menubar=no, resizable=0');
	w.moveTo(screen.width/2-width/2, screen.height/2-height/2);
}

function no() {
	void(0);
}
