var axel = Math.random() + "";
var ord = axel * 1000000000000000000;

/*************************************************************************
  This code is from Dynamic Web Coding at www.dyn-web.com
  Copyright 2001-4 by Sharon Paine 
  See Terms of Use at www.dyn-web.com/bus/terms.html
  regarding conditions under which you may use this code.
  This notice must be retained in the code as is!
*************************************************************************/
function initScrollLayer() {
// Channel Tabs
  // arguments: id of layer containing scrolling layers (clipped layer), id of layer to scroll, 
  // if horizontal scrolling, id of element containing scrolling content (table?)
  var wndo1 = new dw_scrollObj('wn1', 'lyr1', 't1');
  // pass id('s) of scroll area(s) if inside table(s)
  dw_scrollObj.GeckoTableBugFix('wn1'); 
// Channel Box
  var wndo2 = new dw_scrollObj('wn2', 'lyr2', 'imgTbl');
  dw_scrollObj.GeckoTableBugFix('wn2'); 
}

function BookmarkPage(pageName, url)
{
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(pageName, url, '');
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite(url, pageName); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
	else {
		alert("Sorry! Your browser doesn't support this function."); 
	}
}