<!--
// hand cursor and class bover when over a button
function mover(a){a.style.cursor='pointer';a.className='bover';}
// regular cursor and calls regular when out of button
function mout(a){a.className='submit';}

// hand cursor and class bover when over a Next/Previous
function movernext(a){a.style.cursor='pointer'; a.className='bovernext';}
// regular cursor and calls regular when out of button
function moutnext(a){a.className='submitnext';}

// Open a new window
function OpenWindow(PageSrc,Top,Left,Width,Height)
 {
  Features="top="+Top+",left="+Left+",width="+Width+",height="+Height+",toolbar=yes,menubar=no,location=no,directories=no,scrollbars=yes,resizable=yes";
  NewWin=window.open(PageSrc,"NewWindow",Features);
  NewWin.focus();
 }
// Play samples from audio.com
function popUpJSP(a,b,c)
 {
  if(b == null)	b = '';
  if(c == null)	winnew = window.open('http://www.audible.com/adbl'+a+'?BV_SessionID=@@@@1314122838.1155230225@@@@&BV_EngineID=cccjaddiiefhgigcefecekjdffidffg.0' + b,'help','resizable=yes,toolbar=yes,location=no,menubar=yes,scrollbars=yes,status=yes,width=500,height=400');
  else	winnew = window.open('http://www.audible.com/adbl'+a+'?BV_SessionID=@@@@1314122838.1155230225@@@@&BV_EngineID=cccjaddiiefhgigcefecekjdffidffg.0' + b,'help',c);
  if (window.focus) {winnew.focus()}
 }
//--></script>
