/***********************************************
* Get Page Title script- © Dean Layton-James
* d dot laytonjames at gmail dot com
* This notice MUST stay intact for legal use
***********************************************/

function getPageTitle ( sTitleText )
{
    if( document.title ) {
        return document.title ;
    }
}

function emailPage()
{
    //alert( 'Emailing Page' ) ;
    sPage = '/emailpage.php?p=' + window.location ;
    //alert( sPage ) ;
    wEmailWin = window.open( sPage, 'wEmailWin','top=25,left=25,width=350,height=75,location=0,status=0,menubar=0,toolbar=0,scrollbars=0') ;
    return false ;
}


/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

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