function convert(cFrom,cTo,cAmount)
			{			
			window.open('convert.aspx?rateFrom=' + cFrom + '&rateTo=' + cTo + '&amount=' + cAmount + '','Converter','toolbar=no,status=no,resizable=no,width=300,height=200');
			}
        
function bikePopUp(){
	
	window.open('/520.html','520','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=680,height=500');
}

function Pilot(){
	
	window.open('/Pilot.html','520','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=680,height=500');
}
function Hybrid(){
	
	window.open('/Hybrid.html','520','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=680,height=500');
}
function Tandom(){
	
	window.open('/Tandem.html','520','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=680,height=500');
}
function Montari() {
	window.open('/Montari.html','520','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=680,height=500');
}

function checkdata(){
			  frm=document.forms[0];
			  v='';
			  c='';
			  if((frm.email.value.indexOf('@') ==- 1) || (frm.email.value.indexOf('.')==-1))
			  {
			  	v = 'Please enter a valid email address\n';
			  	c = frm.email;
			  }
			  if(frm.email.value != frm.email2.value)
			  {
			  	v = v + 'Your confirmation email address did not match\n';
			  	c = frm.email2;
			  }
			  if(frm.name.value.length == 0)
			  {
			 	v = v + 'Please enter your name\n';
			  	c = frm.name;
			  }
			  if(v.length > 0)
			  {
			  	alert(v);
			  	c.focus();
			  	return false;			  
			  }
			  else
			  {
			  	var isNewsletter="no";
			  	if(document.getElementById('newsletter').checked == true)
				{
			  		if(document.getElementById('newsletter').value == "yes")
					{
			  			isNewsletter =" yes";
			 		}
			  	}
			 	 isNewsletter = "no";
			  }
			  //return false;
			  var websitePath;
			  websitePath = "bulldog.co.nz"; 
			  document.location = 'https://www.' + websitePath + '/pedalToursEmails/webform2.aspx?cmsItemname=' + document.getElementById('name').value + '&cmsItemtour=' + document.getElementById('tour').value + '&cmsItememail=' + document.getElementById('email').value + '&cmsItemcountry=' + document.getElementById('country').value + '&cmsItemcomments=' + document.getElementById('comments').value + '&cmsItemnewsletter=' + isNewsletter + '&subject=Contact From Website&rec=info@pedaltours.co.nz&cmsRedirectUrl=http://www.pedaltours.co.nz/content209.aspx'; 
		return true;
	}