(function(){

	/*Use Object Detection to detect IE6*/
	var  m = document.uniqueID /*IE*/
	&& document.compatMode  /*>=IE6*/
	&& !window.XMLHttpRequest /*<=IE6*/
	&& document.execCommand ;
	
	try{
		if(!!m){
			m("BackgroundImageCache", false, true) /* = IE6 only */ 
		}
		
	}catch(oh){};
	})();

function bpAccept(elt) {
	var oForm = elt.form;
	
	if(oForm) {
		if(elt.checked && elt.value=='Y') {
			oForm.submit.disabled='';
		} else {
			oForm.submit.disabled='disabled';
		}
	}
}