function disp_link()
   {
   var w = document.myform.mylist.selectedIndex;
   var selected_text = document.myform.mylist.options[w].value;
   window.location=selected_text;
}

function popitup(url , title, width, height) {
var newwindow;
if (newwindow && !newwindow.closed)
{ 
	newwindow.focus(); newwindow.document.clear() 
}
else
{ 
	newwindow=window.open('','','width=' + width +',height=' + height + ',resizable=1,scrollbars=1'); 
}

newwindow.document.writeln('<head> <title>' + title + '<\/title> <\/head> <body bgcolor=\"white\"> <center>');
newwindow.document.writeln('<img src=' + url + ' title=\"' + title + '\" alt=\"' + title + '\" >');
newwindow.document.writeln('<\/center> <\/body> <\/html>');
newwindow.document.close();
}

function tidy()
{
if (newwindow && !newwindow.closed) { newwindow.close(); }
}
