// Author Ben Hinton
// Last editied version 26 June 2003
// This will print a current Thomson Gale copyright message
//
// Browser Detection - type
//
isMac = (navigator.appVersion.indexOf("Mac")!=-1) ? true : false;
NS4 = (document.layers) ? true : false;
IEmac = ((document.all)&&(isMac)) ? true : false;
IE4plus = (document.all) ? true : false;
IE4 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 4.")!=-1)) ? true : false;
IE5 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1)) ? true : false;
IE6 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false;
ver4 = (NS4 || IE4plus) ? true : false;
NS6 = (!document.layers) && (navigator.userAgent.indexOf('Netscape')!=-1)?true:false;

IE5plus = IE5 || IE6;
IEMajor = 0;
//------------------------------------------------------------

// print statement for IE
function ieprintcopyright () {
	var today = new Date() ; 
	var todayYear = today.getYear();
	document.write("<p class='small' align='center'>© " + todayYear + " by Gale - CENGAGE Learning<br>All Rights Reserved.<br>1-800-877-4253</p><p>&nbsp;</p>");
}
// Print statement for NS
function nsprintcopyright () {	
	var today = new Date() ; 
	var todayYear = today.getYear();
	var todayYear = 1900 + todayYear ; 
	document.write("<p class='small' align='center'>© " + todayYear + " by Gale - CENGAGE Learning<br>All Rights Reserved.<br>1-800-877-4253</p><p>&nbsp;</p>");
}

if ((isMac) || (NS4) || (NS6)){
	// you are using netscape browser
	nsprintcopyright ();
}
else if	((IEmac)|| (IE4plus )|| (IE5plus )|| (IE4)|| (IE5) || (IE6)) {
	// you are using IE browser
	ieprintcopyright ();
}
else {
	// you are using a browser that we do not recognize
	document.write("<p class='small' align='center'>© by Gale - CENGAGE Learning<br>All Rights Reserved.<br>1-800-877-4253<br></p><p>&nbsp;</p>");
}
