var currentItinDetail = "";

function showItinDetails( str ){
	showdetails = true;
	
	thediv = document.getElementById(str);
	
	//if this has been clicked open already it is being shut
	if( thediv.style.display == "block"	){
		currentItinDetail = "";
		thediv.style.display = "none";
		showdetails = false;
	}
	
	//open if not open already
	if(showdetails){
		//close another one that may already be open
		hideCurrentItin();
		currentItinDetail = str;
		thediv = document.getElementById(str);
	 	thediv.style.display = "block";
	}

	return false;
}

function hideCurrentItin(){
	
	if( currentItinDetail != "" ){
		thediv = document.getElementById(currentItinDetail);
 		thediv.style.display = "none";
	}
}

function viewKeatingTourDiary( code ) {
  
  var features = "dependent=yes,width=600,height=425";
  URL = "http://tourdiary.explorica.com/TourDiaryBrowser-KeatingTours/frmTourPage.aspx?Code='" +  code + "'";
  window.open( URL, "tourDiary", features );
 
}

