// JavaScript Document

//----------------------------------------------------------------
//
function copyBuffer( item ) 
{
	copied = item.createTextRange();
	item.focus();
	item.select();
	copied.execCommand( "Copy" );
}

//----------------------------------------------------------------
//
function addBookmark( url, title )
{
	if ( document.all )
	{
		// Internet Explorer
		window.external.AddFavorite( url, title );
	}
	else
	{
		// Firefox
		document.write( "Press &quot;CTRL + D&quot; to bookmark this page." );
	}
}