var wn;
function doroll(lnk)
   {
	lnk.style.color='yellow';
   }
function undoroll(lnk)
   {
	lnk.style.color='white';
   }
function show_wind(windname,picname,w,h,title)
   {
	wData = "<HTML><HEAD><TITLE>"+title+"</TITLE></head><body>";
	wData += "<img border=none SRC='";
	wData += picname;
	wData += "' width=";
	wData += w;
	wData += " height=";
	wData += h;
	wData += "></body></html>";
	if (wn && !wn.closed)
		wn.resizeTo(w+20+10,h+40+20);
	wn = window.open("",windname,"width="+(w+20)+",height="+(h+40)+",status=yes,resizable=yes");
	wn.document.write(wData);
	wn.document.close();
	wn.focus();
	return void 0;
   }


function golink(n)
   {
	window.location.href = n;
   }
