function launchSearch(queryString){
	openWindow('http://www.google.com/search?hl=en&q='+queryString+'+site%3Aplasticsurgicalarts.net&btnG=Google+Search');
}

function openWindow(address){
	var openWindow = window.open(address,"newwindow","fullscreen=no,toolbar=yes,status=no,menubar=yes,scrollbars=yes,resizable=yes,directories=no,location=yes,width=750,height=450,left=10,top=20")
	openWindow.focus();
}

function makeActive(id){
	divArray = new Array('contact_general','contact_appointments');
	
	for(i=0;i<divArray.length;i++){
		letterDef = document.getElementById(divArray[i]);
		letterDef.style.display = "none";
	}
	
	activeLetter = document.getElementById(id);
	activeLetter.style.display = "inline";
}

function hideBoth(){
	divArray = new Array('contact_general','contact_appointments');
	
	for(i=0;i<divArray.length;i++){
		letterDef = document.getElementById(divArray[i]);
		letterDef.style.display = "none";
	}
}