function popsubmit()
{
		// Starts the FORM checker script
		
		if(document.form.FirstName.value=="")
		{
		alert("Please your Firstname.");
		document.form.FirstName.focus();
		return ;
		}
		
		if(document.form.LastName.value=="")
		{
		alert("Please your Lastname.");
		document.form.LastName.focus();
		return ;
		}
	
		if(document.form.Email.value=="")
		{
		alert("Please insert your Email.");
		document.form.Email.focus();
		return ;
		}
	
		if(document.form.Phone.value=="")
		{
		alert("Please insert your Phone.");
		document.form.Email.focus();
		return ;
		}
		
	if(document.form.Fax.value=="")
		{
		alert("Please insert your Fax.");
		document.form.Email.focus();
		return ;
		}
	
	// End FORM CHECKER proceed to Confirm question

var returnvalue=confirm("Thanks for your interest. We do not have an email address. You may print this form with the data you entered and send it to us through fax -- On Season Fax.: +30 22840-52075. Do you want to print?");
	if(returnvalue)
	{
			
	// Starts the pr.js function here
	var gAutoPrint = true; // Flag for whether or not to automatically call the print function

	// function printSpecial() here out
		if (document.getElementById != null)
		{
		var html = '<HTML>\n<HEAD>\n';

		if (document.getElementsByTagName != null)
			{
		var headTags = document.getElementsByTagName("head");
		
		if (headTags.length > 0)
				html += headTags[0].innerHTML;
			}
		
		html += '\n</HE' + 'AD>\n<BODY>\n';
		
		var printReadyElem = document.getElementById("printReady");
		
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			alert("This page is not printable.");
			return;
		}
			
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
		}
		else
		{
		alert("Sorry, the print ready feature is only available in modern browsers.");
		}
	}

// function printSpecial() here out

// pr.js code ends here

	else
	{
  	alert("Otherwise you may try to call us -- On Season Tel.: +30 22840.51573.");
	}
}
