// JavaScript Document

function checkform(){
if (document.artist.name.value == "" || document.artist.sname.value == "" || document.artist.gname.value == "" || document.artist.street.value == "" || document.artist.city.value == "" || document.artist.state.value == "" || document.artist.country.value == "" || document.artist.tel1.value == "" || document.artist.email1.value == "" || document.artist.bdate.value == "" || document.artist.bmonth.value == "" || document.artist.byear.value == "" || document.artist.bplace.value == "" || document.artist.socialno.value == "" || document.artist.bank.value == "" || document.artist.passport.value == "" || document.artist.pdate.value == "" || document.artist.pmonth.value == "" || document.artist.pyear.value == "" || document.artist.idate.value == "" || document.artist.imonth.value == "" || document.artist.iyear.value == "" || document.artist.venue1.value == "" || document.artist.vcountry1.value == "" || document.artist.vyear1.value == "" || document.artist.position.value == "" || document.artist.instrument.value == "" || document.artist.kin.value == "" || document.artist.address.value == "" || document.artist.tel2.value == "" || document.artist.authority.value == "")
{
alert("Please check the form again. The fields WITHOUT '*' are needed to be filled in.");
return (false);
}
window.open ('thankyou.html', 'MF-Music','height=300, width=300,left=300,top=200,toolbar=no, menubar=no, scrollbars=no, resizable=no');
}
