
<!--
a = 3 // a=numbers of banners
var slump = Math.random();
var talet = Math.round(slump * (a-1))+1;



function create() {

        this.width = '518'
      	this.height = '144'
        this.src = ''
        this.href = ''
	this.alt = ''
	this.border = '0'
}


b = new Array()
for(var i=1; i<=a; i++) { b[i] = new create() }


b[1].src    = "images/home_1.jpg"
b[1].alt    = "Gel_ink_Tip"
b[1].href    = "gel_ink_tip.asp"

b[2].src    = "images/home_2.jpg"
b[2].alt    = "Ball_pen_tip"
b[2].href   = "ball_pen_tip.asp"

b[3].src    = "images/home_3.jpg"
b[3].alt    = "Ball_pen_tip"
b[3].href   = "ball_pen_tip.asp"

var visa = "";
visa += '<a href="'+b[talet].href+'">'
visa += '<img src="'+b[talet].src+'" height='+b[talet].height
visa += ' width='+b[talet].width+' border='+b[talet].border+' alt='+b[talet].alt+'>';
visa += '</a>'
//-->
