<!--// random image function
var logo = 13;
var top = 13;
var bottom = 13;

function randNum (num) {
     var now = new Date();
     var rand = Math.round(num * Math.cos(now.getTime()));
     if (rand < 0) rand = - rand; if (rand == 0) rand++;
     logo = rand;
     top = rand;
     bottom = rand;
}

randNum(logo);
randNum(top);
randNum(bottom);

function writeImgA() {
	document.writeln('<img src="../images/logo/img'+ logo +'.jpg" width="610" height="144" alt=" " border="0">');
}

function writeImgB() {
	document.writeln('<img src="../images/1/img'+ top +'.jpg" width="233" height="233" alt=" " border="0">');
}

function writeImgC() {
	document.writeln('<img src="../images/2/img'+ bottom +'.jpg" width="233" height="233" alt=" " border="0">');
}

//-->