// JavaScript Document
function openWin(bpage){
window.open(bpage,'application','top=0,left=30,width=700,height=450,menubar=no,toolbar=yes,location=no,status=yes,resizable=yes,scrollbars=yes');
}

// JavaScript Document
function CreateBookmarkLink()
{
	title = document.title;
	url = location.href;

	if (window.sidebar)
	{ // Mozilla Firefox Bookmark
		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;
	}
}
