function jumppage(sel) 
{
  var i = sel.selectedIndex
  self.location.href = sel.options[i].value
}



function strSubstr( string, start, length ) { 
	retval = string.substr( start, length ); 
	document.write("<font size='1'>" +retval+ " ...</font>"); 
} 
