var theImagesRight = new Array()
theImagesRight[0] = 'images/splash_right_01.jpg'
theImagesRight[1] = 'images/splash_right_02.jpg'

var j = 0
var p = theImagesRight.length;

var preBufferRight = new Array()
for (i = 0; i < p; i++){
   preBufferRight[i] = new Image()
   preBufferRight[i].src = theImagesRight[i]
}

var whichImageRight = Math.round(Math.random()*(p-1));
function ShowImageRight(){
document.write('<a href="http://216.180.225.74/OnlineShop/VSContainer.swf?module=signup2&state=portal&client_type=32"><img src="'+theImagesRight[whichImageRight]+'" width="211" height="200" border="0" alt="Sign Up Now!"></a>');
}