﻿/* Queue the Site Load Events
===================================================================================== */
addLoadEvent(initPrint);
addLoadEvent(bookmark);
  
/* Print button
===================================================================================== */
function initPrint() {
	var foot = getElementsByClass('foot', null, 'div') ;
	if (foot == '') return ;
	foot = foot[0] ;
	var img = document.createElement('img') ;
	img.src = '/Images/Print.gif' ;
	img.alt = 'Printer Friendly' ;
	img.onclick = function() {window.print() ; } ;
	img.className = 'print' ;
	foot.parentNode.insertBefore(img, foot) ;
}
function bookmark() {
	if (!document.all) return ;
	var bm = getElementsByClass('bookmark', null, 'span') ;
	if (bm == '') return ;
	bm = bm[0] ;
	bm.style.cursor = 'hand' ;
	bm.onclick = function() { window.external.AddFavorite(document.location,document.title) } ;
}
