// JavaScript Document

function popUp(file, title) {
	var response=window.open(""+file+"","title", "width=567,height=660,left=100,top=100,scrollbars=1");
	response.focus();
}

function popUpLarger(file, title) {
	var response=window.open(""+file+"","title", "width=724,height=660,left=100,top=100,scrollbars=1");
	response.focus();
}