function ExplorerFix()
	{
	for (a in document.links) document.links[a].onfocus = document.links[a].blur;
	}
if (document.all)
	{
	document.onmousedown = ExplorerFix;
	}

function op(URL, w, h, s) {
	var params = 'resizable=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='
	params = params + s + ',copyhistory=0,width=' 
	params = params + w + ',height=' + h

	name = window.open(URL, 'window', params);
}

function acsPopup(strLocation) {
	window.open(strLocation, '', 'scrollbars=yes,status=no,resizable=yes,width=425,height=250')
}



function imageOn(i) {
	if (document.images) {
	    document.images['bigpic'].src = onImgArray[i].src;
		setMsg(msg[i])
		// desc.innerHTML=msg[i];
	}
}
function setMsg(msg) {
	window.status = msg
	return true
}