function ShowProgress()
{
var Msg='';
if(document.form.firstname.value=="")
{
Msg+='Your First Name\n';
}
if(document.form.lastname.value=="")
{
Msg+='Your Last Name\n'
}

if(document.form.phone.value=="")
{
Msg+='Your Phone Number\n'
}
if(document.form.addr1.value=="")
{
Msg+='Your Address\n'
}
if(document.form.zip.value=="")
{
Msg+='your Postal Code\n'
}
if(document.form.email.value=="")
{
Msg+='Your E-Mail Address\n'
}
if(document.form.city.value=="")
{
Msg+='Your City\n'
}
if(document.form.state.value=="")
{
Msg+='Your State\n'
}
if (document.form.DESCR.value=="")
{
Msg+='Title of Your Photo\n'
}

if(document.form.terms.checked==false)
{
Msg+='You must accept the Terms of the Contest Rules\n'
}
if (Msg !='')
{
alert('Please Enter the Missing Criteria:\n\n' + Msg);
return(false);
}
else
{
strAppVersion = navigator.appVersion;
if (document.form.THEFILE.value != "")
	{
		if (strAppVersion.indexOf('MSIE') != -1 && strAppVersion.substr(strAppVersion.indexOf('MSIE')+5,1) > 4)
		{
			
			winstyle = "dialogWidth=385px; dialogHeight:140px; center:yes";
			window.showModelessDialog('<% = barref %>&b=IE',null,winstyle);
		}
		else
		{
			window.open('<% = barref %>&b=NN','','width=370,height=115',true);
		}
	}
return true;
}
}
