// JavaScript Document
/*
link = new Array
image = new Array

link[1]="http://www.bigonlinetips.com/"
image[1]="http://img.desihotmasala.com/banner-2.gif"

link[2]="http://www.bigonlinetips.com/"
image[2]="http://img.desihotmasala.com/banner-1.gif"

// Create a random number between 1 and last number
random_num = (Math.round((Math.random()*1)+1))

// Write a link and images with random array
document.write('<a href="' + link[random_num] + '" target="_blank">');
document.write('<img src="' + image[random_num] + '" border="0"></a>');
*/
