﻿function SwapBgColor(ID)
{
	document.getElementById(ID).style.background = '#fdfde6';	
}
function RestoreBgColor(ID)
{
	document.getElementById(ID).style.background = '#FFFFFF';		
}
function editWindow(url)
{
	neweditwindow=window.open(url, "editWindow", "width=705,height=620,scrollbars=yes,status=yes");
	if (window.focus) {neweditwindow.focus()}
	return false;
}

