function ChangeBGColor(el,state)
	{
	if (state == 1)
		{
		el.style.backgroundColor = "#D2D36E";
		}
	else
		{
		el.style.backgroundColor = "#E8E9B6";
		}
	}
function gotoUrl(page,target)
	{
	if (target > "")
		{
		window.open (page,target);	
		}
	else
		{
		location.href  = page;
		}
	}
	
function changeStyle(el,style){
	el.className = style;	
	}
	
function openWnd(page,frame,options){
	var win = window.open (page,frame,options);
	}
