// JavaScript Document

// check ipo country form

function checkCountry() {
		if (document.theForm.countryselect.options[document.theForm.countryselect.selectedIndex].value == 'ya') {
			location.href='ipo_postcode.html';
			return true;
		}
		else {
			location.href='ipo_noaccess.html';
			return false;
		}
}

// check post code

function checkPC(theForm)
{
if (document.theForm.postcode.value =="")
	{
	alert ('Please Enter Your Postal Code'); 
	document.theForm.postcode.focus();
	return false;
	}
	
	if (document.theForm.declare.checked == false) {
	alert ('Sorry, you must accept the conditions');
	return false;
	}
	
	var re = /^[0-9][0-9][0-9][0-9][0-9][0-9]$/gi;
		if(!re.test(document.theForm.postcode.value))
		{
			window.location.href="ipo_noaccess.html"
			return false; 			
		}
	
	var TempVal;
	TempVal=document.theForm.postcode.value;
	
	if(isNaN(TempVal))
	{
		window.location.href="ipo_noaccess.html"
		return false;
	}
	
	else
	{
	return true;
	}	

	
}