
// POP UP WINDOW
function Popup(theURL,winName,features) { 
	thisWin = window.open(theURL,winName,features);
	thisWin.focus();
}


// Dynamic Box Swaps (FOOTER)
function showFooterDiv(whichDiv) { 
	document.getElementById('dnn_quicklinks').style.display='none';
	document.getElementById('contacts').style.display='none';
	document.getElementById(whichDiv).style.display='block';
}	
function changeTab(whichTab) { 
//	alert( document.getElementById('tabQuicklinks').style.backgroundImage );
	
	var path = "/Portals/0/Skins/Satsumas/images/";
	
	document.getElementById('tabQuicklinks').style.backgroundImage="url(" + path + "footerTabInactive.gif)";
	document.getElementById('tabContacts').style.backgroundImage="url(" + path + "footerTabInactive.gif)";
	document.getElementById(whichTab).style.backgroundImage="url(" + path + "footerTabActive.gif)";
}

//remove textbox prefill
function clear_textbox() {
	if (document.searchForm.searchText.value == "Enter your keywords here...")
		document.searchForm.searchText.value = "";
} 

function sndMl(office){
	var m = 'inquiries';
	var d = 'satsumas.com';
	location = 'mailto:'+m+'@'+d+'?subject=Website%20Enquiry' + ((office == "") ? "" : " - " + office);
}
