// JavaScript Document
function addbookmark()
{
	var IE = navigator.appName.match(/(Microsoft Internet Explorer)/gi),
    NS = navigator.appName.match(/(Netscape)/gi),
    OP = navigator.appName.match(/(Opera)/gi),
    BK = document.getElementById('bookmark');
	BK.onmouseout = function()
	{	window.status = '';      }
    if(IE && document.uniqueID)
	{
		var bookmarkurl="http://www.flirtatious-t.com/"
		var bookmarktitle="Flirtatious-T -Fashion, Flirting and More"
		window.external.AddFavorite(bookmarkurl,bookmarktitle)
    }
    else if(OP || IE && !document.uniqueID)
	{
       alert('Your web browser requires you to press Ctrl & D\n In order to bookmark Flirtatious-T.Com.');
    }
    else if(NS)
	{
       alert('Your web browser requires you to Press Ctrl & D\n for Bookmark Flirtatious-T.Com.');
    }
    else{ BK.innerHTML = '' }
}