function ChangeLocation()
{
var yourdomain=document.getElementById("yourdomain").value;
submitOK="true";

if (yourdomain.length<1)
 {
 alert("Введите имя Вашего сайта!");
 submitOK="false";
 }
if (submitOK=="true")
 {
 window.location="http://"+yourdomain+":2222";
 }
return false;
}

function ChangeLocation2(e)
{
var key=e.keyCode || e.which;
var yourdomain=document.getElementById("yourdomain").value;
submitOK="true";

if (key==13 && yourdomain.length<1)   
 {
 alert("Введите имя Вашего сайта!");
 submitOK="false";
 }
if (submitOK=="true" && key==13) 
 {
 window.location="http://"+yourdomain+":2222";
 }
}


function ChangeLocationMail()
{
var yourdomain=document.getElementById("yourdomain1").value;
submitOK="true";

if (yourdomain.length<1)
 {
 alert("Введите имя Вашего сайта!");
 submitOK="false";
 }
if (submitOK=="true")
 {
 window.location="http://"+yourdomain+"/squirrelmail";
 }
return false;
}

function ChangeLocationMail2(e)
{
var key=e.keyCode || e.which;
var yourdomain=document.getElementById("yourdomain1").value;
submitOK="true";

if (key==13 && yourdomain.length<1)
 {
 alert("Введите имя Вашего сайта!");
 submitOK="false";
 }
if (submitOK=="true" && key==13)
 {
 window.location="http://"+yourdomain+"/squirrelmail";
 }
}