// JavaScript Document
	function showPrintPaydocument(url, width, height) {
		window.open(url, "window","location=0,menubar=0,scrollbars=1,resizable=1,statusbar=0,width=" + width + ",height=" + height);
	}
	
	function navigateParent(url) {
		window.opener.location = url;
		window.close();
	}