// JavaScript Document

function openNewWindow(URLtoOpen) { 
		newWindow=window.open(URLtoOpen, 'popUp', 'height=470,width=520,toolbar=yes,scrollbars=yes,location=yes,status=yes,resizable=yes');
}

function openNewWindowTenpo() {
		newWindow=window.open(GetFileName(location.href), 'tenpoPrint', 'height=550,width=630,toolbar=yes,scrollbars=yes,location=yes,status=yes,resizable=yes');
}

function GetFileName(file_url){
		file_url = file_url.substring(file_url.lastIndexOf("/")+1,file_url.length)
		file_url = file_url.substring(0,file_url.indexOf("."));
		file_url = file_url + "_print.html";
		return file_url;
}

