function goBack()
{
	if(history.length > 0)
		history.back();
	else
		window.location = "../default.aspx";
}

function printThisPage()
{
	var query = window.location.search;
	if(query != null)
		window.open("../him/printdoc.aspx"+query);
	else
		alert("Une erreur s'est produite lors de l'appel d'impression\nVeuillez nous excusez pour ce désagrément");
}

function sendThisPage(obj, e)
{
	if(obj.href != '' && obj.href != null)
		obj.href = null;
	var cmd = "mailto:?subject=Cette page vous est recommand%E9e&body=";
	var url = null;
	if(window.location.search != "")
		url = window.location.href;
	else if(/showvideo.aspx/.test(window.location.pathname))
	{
		if(document.getElementById("videoListe").selectedIndex != -1)
			url = window.location.href + "?media=" + document.getElementById("videoListe").value;
		else
			alert("Vous devez choisir un film pour lancer cette commande !");
	}
	
	if(url != null)
	{
		url = url.replace(/#$/,'');
		obj.href = cmd + escape(url);
		url = null;
	}else{
		return false;
	}
}