<!-- hide

function turnMouseOff(ImageName) {
	if (document.images != null) {
		document[ImageName].src = eval(ImageName + "MouseOff.src");
	}
}

function turnMouseOver(ImageName) {
	if (document.images != null) {
		document[ImageName].src = eval(ImageName + "MouseOver.src");
	}
}

function newWindow(where)
{
window.open(where,"win","left=5,top=5,width=530,height=450,location=no,scrollbars=yes,menubar=no,toolbar=yes,resizable=yes");
}

function openWin(url,width,height)
{
		width -= 12;
		height -= 31;
    popURL=url;
    if(!popWin || popWin.closed){
        popWin=popWinOpen(width,height);
    }
    else {
        popWin.close();
        popWin=null;
        popWin=popWinOpen(width,height);
    }
}
var popURL="";
var popWin=null;
var openPopWin=null;

function popWinOpen(width,height){
    var x =(screen.availWidth-width)/2;
    var y =(screen.availHeight-height)/2;
	var winfeatures="width="+width+",height="+height+",top="+y+",left="+x+",resizable,scrollbars=0";
	openPopWin=null;
	openPopWin=window.open(popURL,"remote",winfeatures);
	return openPopWin;
}


// -->