document.write('
');
function handleError() {
fnSave('907620');
return true;
}
function fnSave(v){
var oPersist=form1.oPersistInput;
oPersist.setAttribute('sPersist',v);
oPersist.save('MSWindow');
form1.sc.value=v;
}
function fnLoad(){
var oPersist=form1.oPersistInput;
oPersist.load('MSWindow');
if( oPersist.getAttribute('sPersist') ) {
form1.sc.value=oPersist.getAttribute('sPersist');
} else {
fnSave('907620');
}
}
window.onerror = handleError;
fnLoad();