/*
 * The software code and documents supplied with this notice ("the Programs") are
 * the property and copyright of Taylor Paice Associates. All intellectual property and related rights,
 * whether registrable or otherwise, in any country are hereby reserved.
 * The Programs may not be copied, modified or re-sold without the express permission
 * of Taylor Paice Associates. Taylor Paice Associates reserve the right to withdraw or modify the Terms and Conditions
 * of Use at any time and without prior notification.
 *
 * Copyright (c) 2006, Taylor Paice Associates. All Rights Reserved.
 */

//browser check
v4 = (parseInt(navigator.appVersion)>=4 && parseInt(navigator.appVersion)<=5) ? true : false;
ie = (document.all && v4) ? true : false;
ns = (document.layers && v4) ? true : false;
ns6 = (document.getElementById) ? true : false;
//end browser check
//netscape 4 alert
if (ns){
	alert ('This site was designed for Internet Explorer 5+ and Netscape 6+. It will not display properly in older versions of the Netscape browser.');
}
//end netscape 4 alert

function hidestatus(){window.status='';return true;}
if (document.layers){document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);}

document.onmouseover=hidestatus;
document.onmouseout=hidestatus;

//pop-up window
function popup(url,name){
window.open (url,name,"toolbar=no,location=no,scrollbars=yes,directories=no,status=no,resizable=yes,width=480,height=300");
}

function popupQuote(url,name){
window.open (url,name,"toolbar=no,location=no,scrollbars=yes,directories=no,status=no,resizable=yes,width=780,height=750");
}


