function OuvrePopUp(Url,Title,Param,Width,Heigth)
{
	if (Param == "")
        	Param = "width=" + Width + ",height=" + Heigth;
        else
                Param += ",width=" + Width + ",height=" + Heigth;
	var w = window.open(Url,Title,Param);
}

function OuvrePopUpImprime(Url,Title,Param,Width,Heigth)
{
	if (Param == "")
        	Param = "width=" + Width + ",height=" + Heigth;
        else
                Param += ",width=" + Width + ",height=" + Heigth;
	var w = window.open(Url,Title,Param);
	return w;
}

function SubmitForm(TheForm)
{
 	window.document.forms[TheForm].submit();
}

function SubmitFormAndClose(TheForm)
{
 	window.document.forms[TheForm].submit();
	setTimeout("window.close()",500);
}

//Function which change the background color
function ChangeBackground(Object,Color)
{	
	    Object.style.background = Color;
}
