var mmail="mmail";

function writeAnEmail(){  
  	anAt = "@";
  	aDot = ".";
  	eml = "mai"+"lto"+":"+ mmail + anAt+ "xtend" + aDot + "pl";  	
  	window.location = eml;
}


function openWindow(url_,width,height,interactive){	
	var switches = "";
	if(interactive==true){
		switches = ",scrollbars=1,resizable=1,location=1,toolbar=1,menubar=1,status=1"; //,directories=1
	}else{
		switches = ",scrollbars=1,resizable=0,menubar=no";
	}
	var l = (screen.availWidth - width) / 2;
	var t = (screen.availHeight - height) / 2;
	newwindow = window.open(url_,"newwindow","width="+width+",height=" +height+",screenX="+l+",screenY="+t+",left=" +l+",top="+t+switches);
	newwindow.focus();
}



function doSubmitRegistration(lang){
	if(document.forms[0].licence.value==""){
		if(lang=="pl") alert("Numer licencji nie może być pusty!");
		else alert("The licence number cann't be empty !");
		return;
	}
	
	if(document.forms[0].email.value==""){
		if(lang=="pl") alert("Podaj swój email!");
		else alert("Enter your email!");
		return;
	}	
	ddot=":";
	sint="t";
	slsh="/";
	sdot=".";
	faction ="h"+sint+sint+"p"+ddot+slsh+slsh+"service"+sdot+mmail+sdot+"pl"+slsh+mmail+slsh+"payment"+slsh+"verify"+sdot+"jsp";	
	document.forms[0].action=faction;
	document.forms[0].submit();
}