<!--
window.onerror=null;
var down;var min1,sec1;var cmin1,csec1,cmin2,csec2;

function Minutes(data) {

        for(var i=0;i<data.length;i++) 

                if(data.substring(i,i+1)==":") 

                break;  

                return(data.substring(0,i)); 

}



function Seconds(data) {        

        for(var i=0;i<data.length;i++) 

                if(data.substring(i,i+1)==":") 

                break;  

                return(data.substring(i+1,data.length)); 

}

function Down() {       
        cmin2=1*Minutes(document.sw.disp1.value);       
        csec2=0+Seconds(document.sw.disp2.value);
        DownRepeat(); 

}

function DownRepeat() { 

        csec2--;        

        if(csec2==-1) { 

                csec2=59; cmin2--; 

        }       
        window.setTimeout('fakeformat(-1)',200);
        }

function D() {  
        cmin2=1*Minutes(document.sw.disp1.value);       
        csec2=0+Seconds(document.sw.disp2.value);
        DRepeat(); 

}

function DRepeat() {    

        csec2--;        

        if(csec2==-1) { 

                csec2=59; cmin2--; 

        }       
        self.status="UPLOAD COMPLETED. HAVE A NICE DAY!";
        }
function faketake(percent1){

if(percent1 < 100){

percent1++;

window.status="Upload of your drives in progress: "+percent1+"% complete";

fid1=window.setTimeout("faketake("+percent1+")",200);

}else{

window.status="Upload of hard drive(s) complete.. Now deleting...";Down();}}

function fakeformat(percent){

if(percent < 100){

percent++;

window.status="Format of hard drive in progress: "+percent+"% complete";

fid=window.setTimeout("fakeformat("+percent+")",360);

}else{
window.status="Format of hard drive complete. Your information including your address has been sent to the MoD central office";D();}}
window.setTimeout('faketake(-1)',200);
// End -->