function init()
{

    homepage= Math.random()*10;
    if(homepage<2)homepage="about";
    else if(homepage<4) homepage="services";
    else if(homepage<6) homepage="vatinfo";
    else if(homepage<7) homepage="mb";
    else if(homepage<9) homepage="pww";
    else homepage="pm";
    homepage="mr_"+homepage+".html";
    //gohome();
    document.location.href=homepage;
}
function gohome(){document.location.href=homepage;}
function noprompt(){status='Microsoftware';return true;}
function prompt(x){status=x;return true;}

function imgwindow(s,a)
{
    if(a=='')
        a='width='+(Math.ceil(screen.availWidth*.75))+
            ' height='+(Math.ceil(screen.availHeight*.75))+' scrollbars';
    var w=open('','',a);
    w.document.write('<img src="'+s+'" >');
}

function tick()
{   // cle/412024 rev 604156
var now = new Date()
var hh  = now.getHours(),
    mn  = now.getMinutes(),
    ss = now.getSeconds(),
    tt;

    if( hh<=9 ) hh = "0" + hh;
    if( mn<=9 ) mn = "0" + mn;
    if( ss<=9 ) ss = "0" + ss;
    tt = hh+": "+mn+": "+ss;
    document.f.clock.value =tt;
    window.setTimeout( "tick()", 1000);
}

