<!--
// function for popping open a file
function showPopupFile(file, w, h){

	var left = (screen.width/2)-(w/2);
	var top = (screen.height/2)-(h/2)-20;

	banking=window.open(file,"Option","toolbar=no,width="+w+",height="+h+",scrollbars=yes,status=yes,resizable=1,top="+top+",left="+left);

	}
//-->
