// opens popupwindow for the admin window
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function changeBkImage(menuNum, mouseAction) {
	if (mouseAction == "over") {
		document.getElementById(menuNum).style.backgroundImage = "url(images/templates/menu_buttonbkground_over.gif)";
	} else if (mouseAction == "out") {
		document.getElementById(menuNum).style.backgroundImage = "url(images/templates/menu_buttonbkground.gif)";
	}
}

function submitFormRTE() {
	//make sure hidden and iframe values are in sync before submitting form
	//to sync only 1 rte, use updateRTE(rte)
	//to sync all rtes, use updateRTEs
	updateRTE('content');
	//updateRTEs();
		
	//change the following line to true to submit form
	return true;
}