function addBookmark(title,url) 
{	
	if (window.sidebar) 
	{ // Mozilla Firefox Bookmark
		alert("Press CTRL + D to bookmark this page");
		//window.sidebar.addPanel(title, url,"");
	} 
	else if( window.external ) 
	{ // IE Favorite
		window.external.AddFavorite(url, title); 
	}
	else if(window.opera && window.print) 
	{ // Opera Hotlist
		return true; 
	}
}

function gup(name)
{
    //name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
    //var regexS = "[\\?&]"+name+"=([^&#]*)";
    var regexS = "([0-9]+)";
    var regex = new RegExp( regexS );
    var results = regex.exec( window.location.href );
    ///alert(results);
    if( results == null )
        return "";
    else
        return results[1];
}