function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}

function openAWin(page,width,height) 
{
	var popupWin = window.open(page,"", "width="+width+",height="+height+",scrollbars=1");

	if (!popupWin.opener)
    	popupWin.opener = self;
		popupWin.focus();

}



