logoCount1 = 3;
imgName1 = '<img src="home_logos/img1/logo' ;
imgExt1 = '.gif" border=0>';

logoCount2 = 3;
imgName2 = '<img src="home_logos/img2/logo';
imgExt2 = '.gif" border=0>';

logoCount3 = 3;
imgName3 = '<img src="home_logos/img3/logo';
imgExt3 = '.gif" border=0>';

logoCount4 = 4;
imgName4 = '<img src="home_logos/img4/logo';
imgExt4 = '.gif" border=0>';

var link;
var rand;
function showlogo1() {
	rand = Math.ceil(Math.random() * logoCount1);
	link = rand;
	// Go to corresponding anchor
	if (link == 1)
		document.write("<a href='products.htm#cros'>" + imgName1 + rand + imgExt1 + "</a>");
	else if (link == 2)
		document.write("<a href='products.htm#ptims'>" + imgName1 + rand + imgExt1 + "</a>");
	else if (link == 3)
		document.write("<a href='products.htm#jess'>" + imgName1 + rand + imgExt1 + "</a>");
}
function showlogo2() {
	rand = Math.ceil(Math.random() * logoCount2);
	link = rand;
	// Go to corresponding anchor
	if (link == 1)
		document.write("<a href='products.htm#melinda'>" + imgName2 + rand + imgExt2 + "</a>");
	else if (link == 2)
		document.write("<a href='products.htm#ptims'>" + imgName2 + rand + imgExt2 + "</a>");
	else if (link == 3)
		document.write("<a href='products.htm#rail4'>" + imgName2 + rand + imgExt2 + "</a>");
}
function showlogo3() {
	rand = Math.ceil(Math.random() * logoCount3);
	link = rand;
	// Go to corresponding anchor
	if (link == 1)
		document.write("<a href='products.htm#risLok'>" + imgName3 + rand + imgExt3 + "</a>");
	else if (link == 2)
		document.write("<a href='products.htm#sabimo'>" + imgName3 + rand + imgExt3 + "</a>");
	else if (link == 3)
		document.write("<a href='products.htm#section'>" + imgName3 + rand + imgExt3 + "</a>");
}
function showlogo4() {
	rand = Math.ceil(Math.random() * logoCount4);
	link = rand;
	// Go to corresponding anchor
	if (link == 1)
		document.write("<a href='products.htm#travel'>" + imgName4 + rand + imgExt4 + "</a>");
	else if (link == 2)
		document.write("<a href='products.htm#via'>" + imgName4 + rand + imgExt4 + "</a>");
	else if (link == 3)
		document.write("<a href='products.htm#yeti'>" + imgName4 + rand + imgExt4 + "</a>");
	else if (link == 4)
		document.write("<a href='products.htm#stt'>" + imgName4 + rand + imgExt4 + "</a>");
}