function xopen( xurl, xw, xh ) {
	if( xw == null )
		xw = 550;
	if( xh == null )
		xh = 400;
	modalwindow = window.open(xurl, "", "width="+xw+",height="+xh+",scrollbars=yes");
  modalwindow.focus();	
}

function openFond( url ) {
	modalwindow = window.open('http://www.vermoegen-vl.de/pdf/' + url,'FondFactsheet','width=800,height=560,directories=no,toolbar=no,location=no,menubar=no,scrollbars=no,status=no,resizable');
	modalwindow.focus();	
}


function submitenter(myfield,e) {
	var keycode;
	if (window.event) keycode = window.event.keyCode;
	else if (e) keycode = e.which;
	else return true;
	
	if (keycode == 13) {
	   document.getElementById('loginform').submit();
	   return false;
	} else {
   return true;
  }
}
