//********************************************************
// SHOW / HIDE SIDE BOX
//********************************************************
function showhideSideBox(DivID)
{
	var showhideDiv = document.getElementById(DivID);
	if (showhideDiv.style.display == "none") {
		showhideDiv.style.display = "block";
	}
	else {
		showhideDiv.style.display = "none";	
	}
}

//********************************************************
// SHOW / HIDE BROWSE BY BOX
//********************************************************
function showhideBrowseByBox(DivID)
{
	var showhideDiv = document.getElementById(DivID);
	if (showhideDiv.style.display == "none") {
		document.getElementById('BrowseByBox_Type').style.display = "none";
		document.getElementById('BrowseByBox_Model').style.display = "none";
		document.getElementById('BrowseByBox_Cabins').style.display = "none";
		document.getElementById('BrowseByBox_Year').style.display = "none";
		document.getElementById('BrowseByBox_Price').style.display = "none";
		document.getElementById('BrowseByBox_CharterBase').style.display = "none";
		document.getElementById('BrowseByBox_Destination').style.display = "none";
		showhideDiv.style.display = "block";
	}
	else {
		showhideDiv.style.display = "none";	
	}
}


//********************************************************
// SHOW / HIDE ELEMENT
//********************************************************
function showHideElement(elemID, showHide) {
	if(document.getElementById(elemID)) {
		document.getElementById(elemID).style.display = (showHide == 'show' ? 'block' : 'none');
	}
}

//********************************************************
// SHOW / HIDE LOGIN BAR
//********************************************************
function toggleLogin() {
	var loginID = document.getElementById('loginbar');
	
	if (loginID.style.display == "none") {
		slidedown('loginbar');
		setTimeout("document.getElementById('LoginUsername').focus()",300);
	}
	else {
		slideup('loginbar');
		document.getElementById('LoginUsername').blur();
	}
	
	return(false);
}

//********************************************************
// OPEN URL IN NEW WINDOW
//********************************************************
function open_win(url, width, height)
{
	window.open(url,"promarine_window","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes, width="+width+", height="+height);
}

//********************************************************
// SUBMIT NEWSLETTER SUBSCRIPTION
//********************************************************
function NewsletterSubscriptionSubmit()
{
	open_win(ROOT_URL + "newsletter/subscribe.php?email=" + document.fmNewsletterSignInBox.NewsletterEmail.value, "400", "320")
	
}

//********************************************************
// SEND PAGE TO FRIEND
//********************************************************
function SendToFriend()
{
	open_win(ROOT_URL + "send_to_friend.php", "400", "460")
	
}

//********************************************************
// EMPTY QUICK SEARCH INPUT FIELD
//********************************************************
function emptyQuickSearch()
{
	var searchQueryID = document.getElementById('SearchQuery');
	
	searchQueryID.value = "";
}

