var debug = false;
var newwindow ='';

if (debug) { alert("loading upload_video.js"); }

var today = new Date();
var h=today.getHours()
var mi=today.getMinutes()
var s=today.getSeconds()
var d=today.getDate()
var m=today.getMonth() + 1
var y=today.getFullYear()

//function checkTime(i)
//{
//if (i<10) 
//  {i="0" + i}
//  return i
//}
//mi=checkTime(mi)
//s=checkTime(s)
//document.getElementById('txt').innerHTML=h+":"+m+":"+s

// if (debug) { alert(today + " == " + y + m + d + h + mi + s); }

function Guidelines()
{
	newwindow = window.open("http://www.thesnitcherdesk.com/SubmitGuidelines.php","mywindow",
	"status=0,toolbar=0,resizable=0,scrollbars=1,width=680 height=450");
	if (window.focus) {newwindow.focus()}
	return false;
}

function upload_video_submit() {
	
	if (debug) { alert("form submitted - processing ..."); }
	
	form = document.video_form
	
	if( form.processing.value == "yes")
	{
		if (debug) { alert("already processing - return."); }
		return;
	}
	
	// alert(formcurrentDay.value + " " + formcurrentMonth.value + " " + formcurrentYear.value);
	if (debug) { alert("checking form ..."); }
	
	try
	{
	if( (form.Firstname.value == "") ||
	    (form.Lastname.value == "") ||
	    (form.Phonenumber.value == "") ||
	    (form.Address1.value == "") ||
	    (form.Town.value == "") ||
	    (form.Postcode.value == "") ||
	    (form.Celebrity.value == "") ||
	    (form.Location.value == "") ||
	    (form.VideoDetailsFromSubmitter.value == ""))
	{
		alert("Please complete all fields marked with  * ");
	}
	else if	( (!form.OtherFilmers[0].checked && !form.OtherFilmers[1].checked) ||
	    (!form.Exclusive[0].checked && !form.Exclusive[1].checked) ||
	    (!form.Cameraman[0].checked && !form.Cameraman[1].checked) )
	{
		alert("Please complete all fields marked with  * ");
	}
	else if( !ValidateNumericString(form.Phonenumber.value) )
	{
		alert('Please enter a correct phone number');
	}
	else if((	form.Email.value == "") ||
		(form.Email.value != form.Email2.value))
	{
		alert("Please check that your e-mail addresses match");
	}
	else if(!ValidateDate(form.DOBday.value, //
			 	    form.DOBmonth.value, //
				    form.DOByear.value ) ||
		  !IsEarlier(form.DOBday.value, //
				 form.DOBmonth.value, //
				 form.DOByear.value, //
				 d, m, y) ||
		  (form.DOByear.value - '0') < 1900)
	{
		alert(' Please enter a valid Date Of Birth ');
	}
	else if(!ValidateDate(form.TakenDay.value, //
			 	    form.TakenMonth.value, //
				    form.TakenYear.value ) || // 
		  !IsEarlier(form.TakenDay.value, //
				 form.TakenMonth.value, //
				 form.TakenYear.value, //
				 d, m, y) ||
		  (form.TakenYear.value - '0') < 1900)

	{
		alert(' Please enter a valid date of when the photo was taken');
	}
//	else if( !VideoExtension(form.Video.value) ) 
//	{
//		alert("Please choose a picture file to upload (jpg, jpg2, gif, png, tif, pict, psd, pdf accepted)");
//	}
	else if( form.Video.value == "" ) 
	{
		alert("Please choose a picture file to upload (jpg, jpg2, gif, png, tif, pict, psd, pdf accepted)");
	}
	else if( !form.TermsAndConditionsAgreed.checked )
	{
		alert("Please confirm you have read the terms and conditions!");
	}
	else if(confirm("Right, so you are ready to submit your video to The Snitcher Desk? Let's make sure. Please confirm again that you have read and agreed to our Terms & Conditions and have particularly understood the following key points:\n\r\n\r- You must own the copyright of the video you are about to submit.\n\r\n\r- You grant The Snitcher Desk an exclusive license to market and sell your video for a period of 90 days. After this point you may downgrade the license to a non-exclusive license if you contact us.\n\r\n\r- The information you have provided is completely truthful and that you will be held liable for any lack of truth on your part.\n\r\n\r- You indemnify The Snitcher Desk against any action as a consequence of breaching any term, condition, or clause on your part.\n\r\n\rIf you answered yes to all of the above, click OK and we'll get to work for you."))
	//else if(confirm('Right, so you are ready to submit your photographs to The Snitcher  Desk?  Let’s make sure. Please confirm again that you have read and  agreed to our Terms & Conditions and have particularly understood the  following key points:\n\r\n\r - You must own the copyright of the photo you are about to submit.\n\r\ - You grant The Snitcher Desk an exclusive license to market and sell  your photo for a period of 120 days. After this point you may  downgrade the license to a non-exclusive license if you contact us.\n\r - The information you have provided is completely truthful and that  you will be held liable for any lack of truth on your part.\n\r - You indemnify The Snitcher Desk against any action as a consequence  of breaching any term, condition, or clause on your part.\n\r\n\rAnd further to the terms and conditions:\n\r\n\r - You are sending the highest quality of photograph you can.\n\r - You want us to make you as much money as possible.\n\r\n\r If you answered yes to all of the above, click OK and we’ll get  to work for you.'))
	{
		progress_text = document.getElementById("upload_progress_text")
		progress_flash = document.getElementById("upload_progress_flash")
		upload_button = document.getElementById("upload_submit_button")
		//alert("Please be patient if uploading a large file or if you have a slow connection");
		// unhide the graphic
		form.processing.value="yes";
		progress_text.style.display="block";
		progress_flash.style.display="block";
		upload_button.style.display="none";
		form.processForm.value="yes";
		form.submit();
	}
	}
	catch (e)
	{
		if (debug) { alert("An exception occurred in the script. Error name: " + e.name + ". Error message: " + e.message); }
		else
		{
			alert("An exception occurred in the script. Please try again later.");
			throw e;
		}
	}
}