function redFocus(what) {
	what.style.borderColor='#FF0000';
	what.style.color='#000000';
}

function greyFocus(what) {
	what.style.borderColor='#9B959B';
	what.style.color='#000000';
}

function rollOver(what) {
	what.style.background='#86A2F2';
	what.style.cursor='pointer';

}

function rollBack(what) {
    what.style.background='#EFEFEF';
}

function rollBack2(what) {
    what.style.background='#CDCDCD';
}

function popUp(URL, W, H) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+W+",height="+H+"');");
}

function MM_openBrWindow_REG(theURL) {
    document.location.href=theURL;
}

function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}