function validate() {

var Processing = "Yes"

if (document.form.os0.value == "Select")
{
alert("Please choose the model name or number of your Blackberry phone.");
document.form.os0.focus();
var Processing = "No"
return false;
}


if (document.form.os2.value == "Your IMEI" || document.form.os2.value == "")
{
alert("You must enter the 15 digit IMEI Number found by dialing *#06#. You can also find it on the back of your phone, under the battery.");
document.form.os2.focus();
var Processing = "No"
return false;
}
if (document.form.os2.value.length <15)
{
alert("You have eneterd an IMEI number that is LESS than 15 digits. Please omit any spaces, dots, dashes or slashes and try again.");
document.form.os2.focus();
var Processing = "No"
return false;
}
if (document.form.os2.value.length >15)
{
alert("You have eneterd an IMEI number that is GREATER than 15 digits. Please omit any spaces, dots, dashes or slashes and try again.");
document.form.os2.focus();
var Processing = "No"
return false;
}      

if (document.form.os1.value == "Select")
{
alert("Please choose your Network Provider (under your country) that your phone is currently locked to.");
document.form.os1.focus();
var Processing = "No"
return false;
}  

Net_Selection = document.form.os1.value+""
Net_Selection = Net_Selection.indexOf("(")+""

if (Net_Selection == "-1"){
alert("Network Selection Invalid. Choose your network listed under "+document.form.os1.value+" from the drop down box.");
document.form.os2.focus();
var Processing = "No"
return false;
}  

document.getElementById('myimage').setAttribute('src','images/spinner-small.gif');



	      return true;
}

