// Random Images
function refreshLogo(level) {			// Random Topbar Image (Logo)
	var randLogo = new Array();
      if(level==1)
{
	randLogo[0] = ' " thaibiz.com immensely supportive and helpfull at all times "  ';
	randLogo[1] = ' " I never felt so confident about online marketing " ';
	randLogo[2] = ' " Believe it! thaibiz.com drives traffic to your virtual doors " ';
	randLogo[3] = ' " No more domain headaches, thaibiz.com did it all for me " ';
	randLogo[4] = ' " The turnkey e-solution I was looking for " ';
	randLogo[5] = ' " Amazingly free domains were included in my account! " ';
}

      if(level==2)
{
	randLogo[0] = ' " thaibiz.com immensely supportive and help full at all times "  ';
	randLogo[1] = ' " I never felt so confident about online marketing "  ';
	randLogo[2] = ' " Believe it! thaibiz.com drives traffic to your virtual doors " ';
	randLogo[3] = ' " No more domain headaches, thaibiz.com did it all for me "';
	randLogo[4] = ' " The turnkey e-solution I was looking for " ';
	randLogo[5] = ' " Amazingly free domains were included in my account! "';
}

        var max = randLogo.length;
	tipIndex = getRandomIndex(max);
	tipIndex = tipIndex % max;
	document.write(randLogo[tipIndex]);
}

function getRandomIndex(max) {				// Get Random Index
	var randomNum = Math.random();
	randomNum = randomNum * max;
	randomNum = parseInt(randomNum);
	if(isNaN(randomNum)) randomNum = 0; // for Netscape
	return randomNum;
}
