//////////////////////////////////////////////////////////////////////////
function ShowImage( sURL )
{
	var win = window.open( "image.php?url=" + sURL, "win", "width=450,height=550,scrollbars=no" );
}

//////////////////////////////////////////////////////////////////////////
function ShowDocument( iDocumentId )
{
	var win = window.open( "document.php?iddoc=" + iDocumentId, "win", "width=400,height=500,scrollbars=no" );
}

//////////////////////////////////////////////////////////////////////////
function ShowLetter( sTo, sFrom )
{
	var win = window.open( "letter.php?to=" + sTo + "&from=" + sFrom, "win", "width=400,height=500,scrollbars=no" );
}

//////////////////////////////////////////////////////////////////////////
function ShowOrder( iOrderId )
{
	var win = window.open( "order.php?idord=" + iOrderId, "win", "width=400,height=500,scrollbars=no" );
}
		
//////////////////////////////////////////////////////////////////////////
function OnBeforePrint()
{
	document.getElementById( "TdHeader" ).style.display = "none";
	document.getElementById( "TdPanel" ).style.display = "none";
}

//////////////////////////////////////////////////////////////////////////
function OnAfterPrint()
{
	document.getElementById( "TdHeader" ).style.display = "block";
	document.getElementById( "TdPanel" ).style.display = "block";
}

