	// GLOBAL SCRIPTS

  var ie4 = document.all
  var ns6 = document.getElementById&&!document.all
  var ns  = navigator.userAgent.indexOf('Netscape') != -1 && navigator.userAgent.indexOf('Gecko') != -1
  var opr = navigator.userAgent.indexOf('Opera/') != -1 | navigator.userAgent.indexOf('Opera ') != -1;   // Opera identifying Opera or Other
  var moz = navigator.userAgent.indexOf('Gecko') != -1
var MacOS = (navigator.userAgent.indexOf("mac") != -1) || (navigator.userAgent.indexOf("Mac") != -1)

if (top != self) top.document.title = document.title;

//MOUSEOVER COLOUR SWAP
function swapBg(mo,ab) {
 if (ab=='a'){
        mo.style.backgroundColor = '#fcdbdb';
                 mo.style.cursor = 'pointer';}
 if (ab=='a1'){
        mo.style.backgroundColor = '#bffbf6';
                 mo.style.cursor = 'pointer';}
 if (ab=='a2'){
        mo.style.backgroundColor = '#c0f8f8'
                 mo.style.cursor = 'pointer'}
 if (ab=='b'){
        mo.style.backgroundColor = '#ffffff'}
}

//MAIL PAGE TO FRIEND - BOOK only
	//The JavaScript Source!! http://javascript.internet.com - Created by: Jim Stiles: http://jdstiles.com/
function mailbook()
{
  mail_str = "mailto:?subject= Great new Pencil Drawing Book";
  mail_str += "&body=You should check out this new comprehensive PENCIL DRAWING BOOK by Mike Sibley at - www.Starving-Artists.net or www.SibleyFineArt.com - It's available in November but you can get an early signed copy by subscribing to the mailing list.";
  location.href = mail_str;
}

