//////////////////////////////////////////////////////////////////////////
function ShowImage( sURL )
{
	var win = window.open( "imagec461.html?url=" + sURL, "win", "width=440,height=550,scrollbars=no" );
}

//////////////////////////////////////////////////////////////////////////
function ShowDocument( iDocumentId )
{
	var win = window.open( "http://www.rado-s-travel.ru/document.php?iddoc=" + iDocumentId, "win", "width=400,height=500,scrollbars=no" );
}

//////////////////////////////////////////////////////////////////////////
function ShowLetter( sTo, sFrom )
{
	var win = window.open( "letter9e15.html?to=" + sTo + "&from=" + sFrom, "win", "width=400,height=500,scrollbars=no" );
}

//////////////////////////////////////////////////////////////////////////
function ShowOrder( iOrderId )
{
	var win = window.open( "http://www.rado-s-travel.ru/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";
}


