function PrintFile(fname){
	$WndWidth = 810;
	$WndHeight = 700;
	$left = (screen.width / 2)-($WndWidth/2);
	$top = (screen.height / 2)-($WndHeight/2);
	F1 = window.open(fname,"","width="+$WndWidth+",height="+$WndHeight+",left="+$left+",top="+$top);
};

function PrintFileVar(fname,Vars){
	$WndWidth = 610;
	$WndHeight = 600;
	$left = (screen.width / 2)-($WndWidth/2);
	$top = (screen.height / 2)-($WndHeight/2);
	F1 = window.open(fname+"?sort="+Vars,"","width="+$WndWidth+",height="+$WndHeight+",left="+$left+",top="+$top);
};

function printWnd(){
	window.print();
	window.close();
};

function ShowPic(fname){
	$WndWidth = 600;
	$WndHeight = 700;
	$left = (screen.width / 2)-($WndWidth/2);
	$top = (screen.height / 2)-($WndHeight/2);
	F1 = window.open(fname,"","width="+$WndWidth+",height="+$WndHeight+",left="+$left+",top="+$top);
};

