/**	Rose Travel Consulting
 	@author Tassilo Singhammer
	Bee2Bee - Digital Solutions	
	t.singhammer@bee2bee.biz
	www.bee2bee.biz
*/

// Browser Variablen
var NS4 = (navigator.appName.indexOf("Netscape")>=0 && !document.getElementById)? true : false;
var IE4 = (document.all && !document.getElementById)? true : false;
var IE5 = (document.getElementById && document.all)? true : false;
var NS6 = (document.getElementById && navigator.appName.indexOf("Netscape")>=0 )? true: false;

// Element anzeigen
function show(obj)
{
	if(IE5 || NS6)
	{
		document.getElementById(obj).style.visibility = "visible";
	}
}

// Element verstecken
function hide(obj1, obj2)
{
	if(IE5 || NS6)
	{
		//alert(window.event.y);
		document.getElementById(obj1).style.visibility = "hidden";
		if(document.getElementById(obj2) != null)
			document.getElementById(obj2).bgColor = "";
	}
}

// Call Back! Fenster
function openCallBack(site)
{
	url = "http://www.rosetravel.de/holiday/callback.php";

	if(site == "clicknfly")
		url = "http://www.rosetravel.de/clicknfly/callback.php";
	else
		url = "http://www.rosetravel.de/holiday/callback.php";
		
	cbWin = window.open(url, "CallBack", "HEIGHT=200 WIDTH=350 scrollbars=no toolbar=no titlebar=no menubar=no dependent=yes");
	cbWin.moveTo(91, 412);
	cbWin.focus();
}

// QE2 Preistabelle
function qe2Preise()
{
	qe2PWin = window.open("qe2_preise.html", "QE2Preise", "HEIGHT=331 WIDTH=494 scrollbars=no toolbar=no titlebar=no menubar=no dependent=yes");
	qe2PWin.moveTo(91, 412);
	qe2PWin.focus();
}

// PopUp für Holiday Tagesangebot
function holidayPopUp()
{
	hPWin = window.open("popup.php", "hPopUp", "HEIGHT=300 WIDTH=400 toolbar=no titlebar=no menubar=no dependent=yes");
	hPWin.moveTo(91, 200);
	hPWin.focus();
}

// PopUp für Holiday Tagesangebot
function bhutanKartenPopUp(karte)
{
	hPWin = window.open(karte, "kPopUp", "HEIGHT=511 WIDTH=640 toolbar=no titlebar=no menubar=no dependent=yes");
	hPWin.moveTo(91, 200);
	hPWin.focus();
}