function openPopup(url,name) {
	window.open(url,name,'fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=1');
}

function callLogout() {
	document.location.href="/internet2/LoginHandlerServlet?logonaction=logout&redir=/internet2/de/startseite.ljsp;";
}

function openContactForm(formId, contextPath) {  
	form = document.getElementById(formId);
  windowName = 'formTarget' + (new Date().getTime());
  form.target = windowName;  
  if (!contextPath) {
	  contextPath = "/internet";
  }
  var urlF00;
  if (contextPath == "/internet") {
	  urlF00 = contextPath+'/ln/ar/sc/S-Gate/Formulare/F00.jsp';
  } else {
	  urlF00 = '/assetrepository_prod/S-Gate/Formulare/F00.jsp';
  }
  open (urlF00, windowName, 'width=530,height=700,resizable=1,scrollbars=1');
  form.submit();
}