// show one layer by name - browser safe:
function doPopup( img, loc )
{
	var uri = '/cgi-bin/showpic.pl?i=' + img + '&l=' + loc;
	window.open( uri,'lspopup','width=540,height=430');
}
function showbasket()
{
	var a = '/cgi-bin/basket.pl';
	window.open( a,'basket','width=300,height=440');
}
function addtobasket( odxc )
{
	var a = '/cgi-bin/basket.pl?additem=' + odxc;
	window.open( a,'basket','width=300,height=440');
}

