/*
 * jstudies.js
 */

var PATH='/judaic';

function setBanner() {	
	var html='';
	html += '<map name="banner">';
	html += '<area shape="rect" coords="21,10,80,109" href="http://www.brooklyn.cuny.edu" target="_blank" alt="Brooklyn College Homepage">';
	html += '<area shape="rect" coords="136,100,188,117" href="'+PATH+'/" alt="Department of Political Science Homepage">';
	html += '<area shape="rect" coords="188,100,255,117" href="'+PATH+'/faculty/" alt="Faculty">';
	html += '<area shape="rect" coords="255,100,376,117" href="'+PATH+'/undergraduate/" alt="Undergraduate">';
	html += '<area shape="rect" coords="376,100,456,117" href="'+PATH+'/graduate/" alt="Graduate">';
	html += '<area shape="rect" coords="456,100,540,117" href="'+PATH+'/resources.html" alt="Resources">';
	html += '<area shape="rect" coords="540,100,628,117" href="'+PATH+'/contact.html" alt="Contact Us">';
	html += '</map>';
	html += '<img src="'+PATH+'/graphics/banner/banner_01.jpg" border="0" usemap="#banner">';
	document.write(html);
}
function setHeading(title) {
	var html="";
	html += '<table width="100%" cellspacing="0" cellpadding="0">';
	html += '<tr>';
	html += '<td align="left"><a href="javascript:history.back(-1)" class="goback">&nbsp;&laquo; Go Back</a></td>';
	html += '<td class="headingText">'+title+'</td>';
	html += '</tr>';
	html += '</table>';
	document.write(html);
	document.title += " : "+title;
}
function setFooter() {
	var html='';
	html += '';
	html += '<center>';
	html += '<a href="'+PATH+'/">Home</a> | <a href="'+PATH+'/faculty/">Faculty</a> | <a href="'+PATH+'/undergraduate/">Undergraduate</a> | <a href="'+PATH+'/graduate/">Graduate</a> | <a href="'+PATH+'/resources.html">Resources</a> | <a href="'+PATH+'/contact.html">Contact Us</a><br />';
	html += 'Designed and Developed by Academic Information Technologies<br>';
	html += 'Department of Judaic Studies, Brooklyn College<br>';
	html += 'All Rights Reserved &copy; 2006<br>';
	html += '</center>';
	document.write(html);
}

