var surpriseurl=new Array(
	"http://http.cdnlayer.com/row1/ROW_Full_v1036.exe", 
	"http://http.cdnlayer.com/row2/ROW_Full_v1036.exe", 
	"http://http.cdnlayer.com/row3/ROW_Full_v1036.exe", 
	"http://http.cdnlayer.com/row4/ROW_Full_v1036.exe", 
	"http://http.cdnlayer.com/row5/ROW_Full_v1036.exe", 
	"http://http.cdnlayer.com/row6/ROW_Full_v1036.exe", 
	"http://http.cdnlayer.com/row7/ROW_Full_v1036.exe", 
	"http://http.cdnlayer.com/row8/ROW_Full_v1036.exe", 
	"http://http.cdnlayer.com/row9/ROW_Full_v1036.exe", 
	"http://http.cdnlayer.com/row10/ROW_Full_v1036.exe", 
	"http://http.cdnlayer.com/row11/ROW_Full_v1036.exe", 
	"http://http.cdnlayer.com/row/ROW_Full_v1036.exe" 
)

var urlinterval=200
var surpriseurllength=surpriseurl.length
var timer
var mouseisover=false

function openurl(thisurl) {
	var thisurlindex=Math.floor(surpriseurllength*Math.random())
	thisurl.href=surpriseurl[thisurlindex]  
}

function msover() {
	mouseisover=true
	showstatusbar()
}

function msout() {
	mouseisover=false
}

function showstatusbar() {
	if (mouseisover) {
		timer=setTimeout("showstatusbar()",100)
	}
	else {clearTimeout(timer)}
}

