function showFull(pic) {

settings=

	"toolbar=no,location=no,directories=no,"+

	"status=no,menubar=no,scrollbars=no,"+

	"resizable=yes,width=550,height=600,left=100,top=100";

	NewWindow=window.open('','',settings);

	NewWindow.document.open();

	NewWindow.document.write('<html><head></head><body color="#000000" bgcolor="#2064AA">');

	NewWindow.document.write('<div>');

	NewWindow.document.write('<img src="images/'+pic+'.gif" alt="Click the picture to close the window" border="0" onclick="self.close()";>');

	NewWindow.document.write('</div>');

	NewWindow.document.write('<div align="center"><br>');

	NewWindow.document.write('<font face="arial" color="#000000">');

	NewWindow.document.write('Click the map to close the window');

	NewWindow.document.write('</font></div>');

	NewWindow.document.write('</body></html>');

	NewWindow.document.close();

}

function popup(url, name, width, height, scrl, left, top) {

	

	settings=

	"toolbar=no,location=no,directories=no,"+

	"status=no,menubar=no,scrollbars="+scrl+","+

	"resizable=yes,width="+width+",height="+height+",left="+left+",top="+top;	



	NewWindow=window.open(url,name,settings);

}

