function bookmarksite( title, url )
{
	if ( document.all )
		window.external.AddFavorite( url, title );
	else if ( window.sidebar )
		window.sidebar.addPanel( title, url, "" );
}

/**
* An evil fix for IE's crappy browsers and their non-compliance of w3c css standards
*/
function ieIsCrap( )
{
    if(navigator.appName.indexOf("Microsoft")!=-1)
    {
      winW = document.documentElement.clientWidth-20;
      if( winW < 780 )
      {
        var mydiv = document.getElementById( 'main' );
        mydiv.style.width = '780px';
      }
    }
}
