// JavaScript Document


function A(URL,coords,alt,img) {
	document.write('<AREA SHAPE="poly" ');
	if(URL != "")
		document.write('HREF=\"' + URL + '\" target="_blank" ');
	document.write('onMouseOver="swapNew(\'images/' + img + '\');" onMouseOut="swapRestore();" ')
	document.writeln('COORDS="' + coords + '" TITLE="' + alt + '">');
	
	/*document.write('<a href=\"' + url + '\" target=\"_blank\">');*/
	
}
function swapNew(img) {
document.image.src = img;
document.image.useMap = "#Map1";
}

function swapRestore() {
document.image.src = "images/map.gif";
document.image.useMap = "#Map1";
}
function B(URL,coords,alt) {
	document.write('<AREA SHAPE="poly" ');
	if(URL != "")
		document.write('HREF=\"' + URL + '\" target="_blank" ');
	document.write('onMouseOver="C(\'' + alt + '\');" onMouseOut="C(\'\');" ')
	document.writeln('COORDS="' + coords + '" TITLE="' + alt + '">');
}
function C(text_to_write)
{
 if (document.images) {
  document.btop.t.value = text_to_write;
  document.bbot.t.value = text_to_write;
 }
}
