function email(user,domain) {
	var email=user+'@'+domain;
	var content='<a href="mailto:'+email+'">'+email+'</a>';
	document.write(content);
	}

function reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.pgW=innerWidth; document.pgH=innerHeight; onresize=reloadPage; }}
  else if (innerWidth!=document.pgW || innerHeight!=document.pgH) location.reload();
}

function validate() {

}

function init(x) {
}

reloadPage(true);


