function B(URL,coords,alt,img) {
	document.write('<AREA SHAPE="poly" ');
	if(URL != "")
	document.write('HREF="http://www.yappydo.com/' + URL + '" '); /*This line where you configure the output URL, put your domain name address here */
	document.write('onMouseOver="C(\'' + alt + '\');" onMouseOut="C(\'\');" ') /*This line tells input box what county to show*/
	document.writeln('COORDS="' + coords + '" ALT="' + alt + '" TITLE="' + alt + '">'); /*This line sets up the mouseover tags*/
}

function C(text_to_write) /*This function for the mouseover input form top and/or bottom*/
{
 if (document.images) {
  document.ctop.t.value = text_to_write; /*form name ctop*/
 /* document.cbot.t.value = text_to_write; form name cbot*/
 }
}