function shownewwin(windowURL, windowName, windowFeatures) {
	var newWindow = window.open(windowURL, windowName, windowFeatures);
	newWindow.focus(); 
	return;
 }

/************************************************************************/
/*                        START BOOKMARK FUNCTION                       */
/************************************************************************/
// This is a cross browser (Firefox 1.x+, IE4+ and Opera7+) 
// script for allowing the user to easily bookmark the site, 
// by clicking on a link on the page.
// Add this to the href link: javascript:bookmarksite('Bookmark Name/Title','URL');
function bookmarksite(title,url){
    if (window.sidebar) // opens firefox bookmark dialogue
    window.sidebar.addPanel(unescape(title), unescape(url), "");
    else if(window.opera && window.print) { // opens opera bookmark dialogue
        var lvll = document.createElement('a');
        lvll.setAttribute('href',url);
        lvll.setAttribute('title',title);
        lvll.setAttribute('rel','nosidebar');
        lvll.click();
    } 
    else if(document.all) // opens ie bookmark dialogue
    window.external.AddFavorite(url, title);
}

/************************************************************************/
/*                         END BOOKMARK FUNCTION                        */
/************************************************************************/
