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.
	************************************************************/
   function bookmarksite(title,url){
    if (window.sidebar) // opens firefox bookmark dialogue
    window.sidebar.addPanel(title, 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','sidebar');
     lvll.click();
    } 
    else if(document.all) // opens ie bookmark dialogue
     window.external.AddFavorite(url, title);
   }

/************************************************************************/
/*                         END BOOKMARK FUNCTION                        */
/************************************************************************/
