
var offImgArray = new Array();
offImgArray[0] = new Image();
offImgArray[0].src = "images_new/autoparking.gif";
offImgArray[1] = new Image();
offImgArray[1].src = "images/logosmall.gif";
var onImgArray = new Array();
onImgArray[0] = new Image();
onImgArray[1] = new Image();
onImgArray[0].src = "images_new/autoparking_on.gif";
onImgArray[1].src = "images/logosmall_on.gif";
var imgName = new Array();
imgName[0] = "autoparking";
imgName[1] = "logosmall";


function imageOn(i) {
	document.getElementById(imgName[i]).src = onImgArray[i].src;
}

function imageOff(i) {
	document.getElementById(imgName[i]).src = offImgArray[i].src
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function setMsg(msg) {
	window.status = msg
	return true
}
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=700,width=770,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
