function validateall_eng()
{
if ((document.form1.name.value=="")||(document.form1.email.value=="")||(document.form1.city.value=="")||(document.form1.mobile.value==""))
{
alert ("You must fill all the require Field!")
return false
}					
}

function validateall_ind()
{
if ((document.form1.name.value=="")||(document.form1.email.value=="")||(document.form1.city.value=="")||(document.form1.mobile.value==""))
{
alert ("Anda harus mengisi semua kolom yang telah ditentukan!")
return false
}					
}

function emailcheck_ind()
{
var string1=document.form1.email.value
if (string1.indexOf("@")==-1)
{
alert("Silakan isi Email Anda dengan benar!")
}
}

function emailcheck_eng()
{
var string1=document.form1.email.value
if (string1.indexOf("@")==-1)
{
alert("Please Fill your email correctly!")
}
}