<!--

function PopWindow (file, width, height) {
	var stonePop = window.open(file, 'stonePop', 'height=' + height + ',width=' + width + ',toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=no,left=' + ( (
	screen.availWidth - parseInt( width ) ) / 2 ) + ',top=' + ( ( screen.availHeight - parseInt( height ) ) / 2 ) );
	if (window.focus) { stonePop.focus(); }
 	return false;
 }

function PopWindowPrint (file, width, height) {
	var printable = window.open(file, 'printable', 'height=' + height + ',width=' + width + ',toolbar=yes,location=no,directories=no,status=yes,menubar=yes,resizable=yes,scrollbars=yes,left=' + ( (
	screen.availWidth - parseInt( width ) ) / 2 ) + ',top=' + ( ( screen.availHeight - parseInt( height ) ) / 2 ) );
	if (window.focus) { printable.focus(); }
 	return false;
 }

-->