function toggleone(div_id) {
		var el = document.getElementById(div_id);
		
		if ( el.style.display == 'none' ) {	
				el.style.display = 'block';
		}
		else {el.style.display = 'none';}
	}
function openwindow(str,str2,str3){
		dns = document.domain;
		window.open("http://" + dns + "/Itinerary.php?type=" + str3 + "&pid="+ str2 + "&id=" + str,
		"mywindow","location=1,status=1,scrollbars=1,width=650px,height=600px");
		
}

function checkcountry(country){
		
	if (country == 'US' ||country == 'CA' ){
		toggle('zip');
		toggle('zip2');
	}
	
	else{
		toggle2('zip');
		toggle2('zip2');
	}
		
}
function toggle(div_id) {
	var el = document.getElementById('zip');
	var el2 = document.getElementById('zip2');
		el.style.display = 'block';
		el2.style.display = 'block';
}
function toggle2(div_id) {
	var el = document.getElementById('zip');
	var el2 = document.getElementById('zip2');
		el.style.display = 'none';
		el2.style.display = 'none';
}
function popitup(url) {

	newwindow=window.open(url,"mywindow","location=1,status=1,scrollbars=1,width=650px,height=600px");
	
}
