gConst.kAlertTimeoutInterval=2500;
function TimedAlert(_1,_2,_3){
this.iFadeoutTimer=null;
Alert.call(this,_1,_2,_3);
}
TimedAlert.prototype=new Alert();
TimedAlert.prototype.superclass=Alert;
TimedAlert.prototype.constructor=TimedAlert;
TimedAlert.prototype.display=function(){
Alert.prototype.display.apply(this);
this.iFadeoutTimer=window.setTimeout(function(){
gPage.iDialog.confirm(true);
},gConst.kAlertTimeoutInterval);
};
TimedAlert.prototype.initYesButton=function(){
var _4=$("dialog_yes_button_label_link");
_4.style.display="none";
_4.onclick=function(){
return false;
};
var _5=$("dialog_yes_button_image_link");
_5.onclick=function(){
return false;
};
_5.onmouseover=function(){
};
_5.onmouseout=function(){
};
$("dialog_yes_button_image").src="images/ajax/alertWorking.gif";
};
TimedAlert.prototype.initNoButton=function(){
$("dialog_no_button").style.display="none";
};

