function populate(thisform) {
  with (thisform){
    realname.value = Name.value
   email.value = Email.value
   return true;
  }
}

function openCenteredWin(url,name,w,h,p) {

	if(p){
		var s = p
	} else {
		var s = "scrollbars,resizable,menubar,status";
	}
	
	// make sure both ie and ns open same size window
	// adjust ns height
	if (navigator.appName == 'Netscape') {
		w = w + 5;
		h = h + 25;
	}

	s += ",width="+w;
	s += ",height="+h;
	
	if(window.screen) {
		var aH = screen.availHeight;
		var aW = screen.availWidth;
		var cY = (aH - h)/2;
		var cX = (aW - w)/2;
		s += ",left=" + (cX-5);
		s += ",top=" + (cY-50);
	}
	
	myWindow = window.open(url,name,s);
	if (window.focus) {myWindow.focus()}
}
