function confirm () {  // check spaces and alert or de-alert
	var string = document.getElementById('YourMail').value
	var tstring = "";
	string = '' + string;
	splitstring = string.split(" ");
	for(i = 0; i < splitstring.length; i++)
	tstring += splitstring[i];
	document.getElementById('YourMail').value = tstring;

	var string2 = document.getElementById('Retype').value
	var tstring2 = "";
	string2 = '' + string2;
	splitstring2 = string2.split(" ");
	for(i = 0; i < splitstring2.length; i++)
	tstring2 += splitstring2[i];
	document.getElementById('Retype').value = tstring2;

if (tstring != tstring2)
	{
	document.getElementById('pasop1').style.visibility = "visible";
	document.getElementById('pasop2').style.visibility = "visible";
	document.getElementById('Retype').style.border = "1px solid red";
	document.getElementById('YourMail').style.border = "1px solid red";
	}
else
   {
	document.getElementById('pasop1').style.visibility = "hidden";
	document.getElementById('pasop2').style.visibility = "hidden";
	document.getElementById('YourMail').style.border = "1px solid rgb(102,153,204)";
	document.getElementById('Retype').style.border = "1px solid rgb(102,153,204)";
   }
}