//////////////////////////////////////////////////////////////////////////////////////////////////////
function ShowImage( sURL )
{
	var win = window.open( "image.php?url=" + sURL, "win", "width=650,height=580,scrollbars=no" );
}

//////////////////////////////////////////////////////////////////////////////////////////////////////
function UploadSFile( sURL )
{
	document.location.replace( "download.php?url=" + sURL );
}

//////////////////////////////////////////////////////////////////////////
function OnBeforePrint()
{
	document.getElementById( "TdPanel" ).style.display = "none";
}

//////////////////////////////////////////////////////////////////////////
function OnAfterPrint()
{
	document.getElementById( "TdPanel" ).style.display = "block";
}
