
	function popUp(strURL,strType,strHeight,strWidth) {
		var strOptions="";
		if (strType=="console") {
			strOptions="resizable,height="+strHeight+",width="+strWidth;
		}
		if (strType=="fixed") {
			strOptions="status,height="+strHeight+",width="+strWidth;
		}
		if (strType=="glossary") {
			strOptions="resizable,scrollbars,height="+strHeight+",width="+strWidth;
		}
		if (strType=="elastic")	{
			strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
		}
		window.open(strURL, 'newWin', strOptions);
	}

	// Email a friend
	function emailFriend() {
    	var url = "http://www.uchospitals.edu/emailpage/";
    	url += "?url=" + document.location;
    	popUp(url, "console", 600, 420);
	}

jQuery(function($) {

	/* Search box default text */ 
	$('input#searchFill').example('Search');
	
	$('#options li#email a').click(function() {
		emailFriend();
		return false;
	});
	
	$('#options li#print a').click(function() {
		window.print();
		return false;
	});
	
});

