	// 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;
}

//-- -----------------GENERAL PAGE Callout-------------
function ws_callout(msg,hi) {
  var scrOfY = 0;
  if( typeof( window.pageYOffset ) == 'number' ) { 
    //Netscape compliant
    scrOfY = window.pageYOffset;
  } else if( document.body && (document.body.scrollTop ) ) {
    //DOM compliant
    scrOfY = document.body.scrollTop;
  } else if( document.documentElement && (document.documentElement.scrollTop ) ) {
    //IE6 standards compliant mode
    scrOfY = document.documentElement.scrollTop;
  }
pos = scrOfY + 100

call  = '<div align="center">'
call += '<div style="width:400px;background-color:#fffff0;color:#ff5900;border:1px solid #b00000;font-family:verdana;font-size:14pt;text-align:center;margin-top:10px;">'
call += 'EXTENDED Free Shipping Offer on Books</div>'
call += '<div style="width:98%;text-align:left;margin:6px 0;">'
call += '<img src="home/bookcover.gif" width="218" height="280" border="0" align="right">'
call += 'Royal Mail have given us a time extension that we\'re passing on...'
call += '<ul style="margin-top:5px;">Offer now ends January 28th 2011 and extends to:'
call += '<li>USA</li>'
call += '<li>Canada</li>'
call += '<li>Europe (excluding UK)</li>'
call += '<li>Australia and New Zealand</li>'
call += '<li>India</li>'
call += '<li>South Africa</li>'
call += '<li>South America</li></ul>'
call += 'This offer is available only to those countries or locations (as listed above) that we currently ship to by M-Bag. All other locations will be charged the regular air mail rate. Offer does not extend to imperfect copies. Offer ends on the day preceeding the cancellation of our M-Bag contract and the imposition of higher air mail rates.</div>'
call += '<a href="http://www.sibleyfineart.com/pencil-drawing-book.htm" class="ws_Btn" style="width:400px;margin-bottom:6px;" target="_blank">Full Book details</a><br clear="all">'
call += '<a href="#" onClick="document.getElementById(\'ws_callout\').style.display=\'none\';return false" class="ws_Btn" style="width:200px">Close</a><br><br>'
call += '</div></div></div>'


if(msg=='freeship'){
document.getElementById('ws_callout').innerHTML = call
}
document.getElementById('ws_callout').style.top = pos
document.getElementById('ws_callout').style.height = hi +'px'
document.getElementById('ws_callout').style.display='block'
}


