function checkcode() {
if (document.MyForm.MyCode.value =="")
{
   alert("Please enter your password!");
}
else
{
   document.MyForm.action="http://www.onthelam.ca/client/gallery/" + document.MyForm.MyCode.value + "/index.html";
   document.MyForm.submit()
}
}
