var HoverColor = '#4595e5';
var StandardColor = '';

//---------------------------------------------------------------------------
function HoverButton(obj){
	StandardColor = obj.style.background;
	obj.style.background = HoverColor;
}
//---------------------------------------------------------------------------
function SetBack(obj){
	obj.style.background = StandardColor;
}
//---------------------------------------------------------------------------
function ShowPopUp(_FilePath){
	window.open(_FilePath,"",'width=800, height=600, scrollbars=YES, sizeable=YES');
}
//---------------------------------------------------------------------------