<!-- //

function Print(content,lang)
{
	var popUp = null;
	var ScrWidth = 640;
	var popUpWidth = 700;
	var ScrHeight = 480;
	var popUpHeight = 480;
	if(window.screen)
	{
		ScrWidth = window.screen.width;
		ScrHeight = window.screen.height;
	}
	if(popUp != null && !document.layers)
	{
		popUp.close();
	}
	PosX = Math.round((ScrWidth - popUpWidth) / 2);
	PosY = Math.round((ScrHeight - popUpHeight) / 2);
	popUp = window.open("/print.php?content="+content+"&lang="+lang, "print", "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width=" + popUpWidth + ",height=" + popUpHeight + ",left=" + PosX + ",top=" + PosY);
	popUp.focus();
}

function SendEmail(d_user, d_host, d_subject)
{
	var OpenMailProgram = "mailto:" + d_user + "@" + d_host + "?Subject=" + d_subject;
	window.location = OpenMailProgram;
}

function $(id)
{
	return document.getElementById(id);
}

// -->