var win;
var winagents;
function bkmain(){
	a = "2";
	c = "0";
	i = "0";
	s = "0";
	d = "1";
	t = "0";
	if (win){
		if (!win.closed){
			alert("Your online booking session is already active, clicking on OK takes you to your active session\nto book another date please close this window first.");
			win.focus();		
		}
		else {
			win = window.open("http://www.ionianislandholidays.co.uk/ionian_direct2/fr_tours.htm","new_window","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,left=0,top=0,width=780,height=530")
		}
	}
	else {
			win = window.open("http://www.ionianislandholidays.co.uk/ionian_direct2/fr_tours.htm","new_window","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,left=0,top=0,width=780,height=530")
	}	
}

//https://www.ionianislandholidays.co.uk/ionian_direct2/agents/fr_tours_agents.htm
function agentlogin(){
	if (winagents){
		if (!winagents.closed){
			alert("Your Agent session is already active, clicking on OK takes you to your active session\nto book another date please close this window first.");
			winagents.focus();		
		}
		else {
			winagents = window.open("http://www.ionianislandholidays.co.uk/ionian_direct2/agents/fr_tours_agents.htm","new_window","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,left=0,top=0,width=780,height=530")
		}
	}
	else {
			winagents = window.open("http://www.ionianislandholidays.co.uk/ionian_direct2/agents/fr_tours_agents.htm","new_window","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,left=0,top=0,width=780,height=530")
	}	
}

function open_div(d){
	//show div
	//alert(d);
	e = eval("document.getElementById('" + d + "')");
	e.style.visibility = 'visible';
}

function close_div(d){
	//hide div
	//alert(d);
	e = eval("document.getElementById('" + d + "')");
	e.style.visibility = 'hidden';
}
function showdiv(div){
	//alert(div);
	var e;
	e = document.getElementById(div);
	e.style.display = 'block';
	
	switch(div){
		case "bd":
		document.getElementById('fd').style.display = 'none';
		document.getElementById('fc').style.display = 'none';
		break;
		
		case "fd":
		document.getElementById('bd').style.display = 'none';
		document.getElementById('fc').style.display = 'none';
		break;
		
		case "fc":
		document.getElementById('fd').style.display = 'none';
		document.getElementById('bd').style.display = 'none';
		break;
		
	
	}
	
	
	
}

function showimage(img){
	//alert(img);
	
	document.getElementById('mainimage').src=img;
}