var obj, t2, tek;

function checkMark(val){
	val = parseFloat(val);
	if ( !val )
		val = '';
	else{
		if (parseFloat(val) > 5)
			val = '';
	}
	return val;
}


function show_div(id){
	obj = document.getElementById(id);
	if (obj!=null){
		if ( obj.style.display == 'none' ) obj.style.display = 'block';
		else obj.style.display = 'none';
	}
}




/* μενώ */
function show_sub_menu(pre,show_hide){
	if ( tek != null && tek.id == "lev2" && show_hide == 1 ){
		clearTimeout(t2);
		tek.style.visibility = "hidden";
		tek.previousSibling.previousSibling.style.color = "white";
	}
	tek = pre.nextSibling.nextSibling;
	if ( tek != null && tek.id == "lev2" ){
		if ( show_hide == 1 ){
			tek.style.visibility = "visible";
			tek.previousSibling.previousSibling.style.color = "black";
		}
		else{
			tek.previousSibling.previousSibling.style.color = "white";
			t2 = setTimeout("show_hide_sub_menu()",1000);
		}
	}
}

function show_hide_sub_menu(){
	clearTimeout(t2);
	if ( tek != null && tek.id == "lev2" ){
		tek.style.visibility = "hidden";
		tek.previousSibling.previousSibling.style.color = "white";
	}
}









/*********************************************
**********************************************
**********************************************

 ρ windstarcruises.com

**********************************************
**********************************************
*********************************************/
function ShowVideo(inID) {
    var URL2 = "http://windstarcruises.com/videowindow.aspx?id=" + inID;

    LeftPosition = (screen.width) ? (screen.width - 480) / 2 : 0;
    TopPosition = (screen.height) ? (screen.height - 385) / 2 : 0;

    var dWin = window.open(URL2, '_drwin', 'left=' + LeftPosition + ',top=' + TopPosition + ',resizable=no,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,width=480,height=385');
    dWin.focus();
}

    function openInteractive(plan) {
        var url = '/inc/deckplan.php?ship=' + plan;
        window.open(url, 'interactiveWin', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=600,left=100,top=200');
    }
