
function DetailsForm()
{
	this.tab_id = "DetailsForm_MainTabs";
	//this.tabObj = new DHTMLSuite.tabView();
	this.tabs   = new Array();
	
	this.tab_body_width = 425;
	
	this.curr_open_tab = "Intro";
	this.booking_id    = "BookingForm";
	

	this.initTabs = function()
	{
		this.tabObj.setParentId( this.tab_id );
		this.tabObj.setTabTitles( this.tabs );
		this.tabObj.setIndexActiveTab(1);
		this.tabObj.setWidth('auto');
		this.tabObj.setHeight('auto');
		this.tabObj.setIndexActiveTab(0);
		this.tabObj.init();
	}
	
	this.addTab = function(title)
	{
		alert(title);
		this.tabs.push(title);
	}
	
	this.addTabs = function(all_tabs)
	{
		this.tabs = all_tabs;
	}
	
	this.showTab = function(tab_id)
	{		
		this.closeBooking();
	
		if(document.getElementById(tab_id))
		{	
			document.getElementById("Tab_" + this.curr_open_tab).className = "";
			document.getElementById(this.curr_open_tab).style.display      = "none";
		
			this.curr_open_tab = tab_id;
			
			document.getElementById(tab_id).style.display      = "block";			
			document.getElementById("Tab_" + tab_id).className = "on";
		}
	}
	
	this.openBooking = function()
	{
		document.getElementById("BookingBox").style.display = "none";
		document.getElementById(this.curr_open_tab).style.display = "none";
		document.getElementById("Tab_" + this.curr_open_tab).className = "";
		
		document.getElementById("BookingTab").className = "on";
		document.getElementById(this.booking_id).style.display = "block";
	}
	
	this.closeBooking = function()
	{		
		document.getElementById("BookingTab").className = "";
		document.getElementById("BookingBox").style.display    = "block";
		document.getElementById(this.booking_id).style.display = "none";
	}

}

var js_detailsForm = new DetailsForm();






