// POP UP
popupWins = new Array();

function windowOpener(url, name, args) {
/******************************* 
the popupWins array stores an object reference for
each separate window that is called, based upon
the name attribute that is supplied as an argument
*******************************/
if ( typeof( popupWins[name] ) != "object" ){
popupWins[name] = window.open(url,name,args);
} else {
if (!popupWins[name].closed){
popupWins[name].location.href = url;
} else {
popupWins[name] = window.open(url, name,args);
}
}

popupWins[name].focus();
}


// bookmark this site
/*function bookmarksite(HustlerWorld, url){
if (document.all)
window.external.AddFavorite(url, HustlerWorld);
else if (window.sidebar)
window.sidebar.addPanel(HustlerWorld, url, "http://www.hustlerworld.com/")
}*/

function addBookmark(title,url) { 
if (window.sidebar) { 
window.sidebar.addPanel(title, url,"http://www.hustlerworld.com/"); 
} else if( document.all ) { 
window.external.AddFavorite( url, title); 
} else if( window.opera && window.print ) { 
return true; 
} 
}




