// JavaScript Document

function popupPrint(page_id) {
	var w = 500;
	var h = 500;
	var l = (screen.width - w) / 2;
	var t = (screen.height - h) / 2;
	var oWin = window.open('/en/pagetools/print/' + escape(page_id), 'PAGETOOLS', 'width='+w+',height='+h+',left='+l+',top='+t+',scrollbars,toolbar,resizable,resizeable');
	oWin.focus();
}

function popupPDF(page_id) {
	var w = 500;
	var h = 500;
	var l = (screen.width - w) / 2;
	var t = (screen.height - h) / 2;
	var oWin = window.open('/en/pagetools/pdf/' + escape(page_id), 'PAGETOOLS', 'width='+w+',height='+h+',left='+l+',top='+t+',scrollbars,toolbar,resizable,resizeable');
}

function popupEmail(page_id) {
	var w = 300;
	var h = 450;
	var l = (screen.width - w) / 2;
	var t = (screen.height - h) / 2;
	var oWin = window.open('/en/pagetools/email/' + escape(page_id), 'PAGETOOLS', 'width='+w+',height='+h+',left='+l+',top='+t+',scrollbars,toolbar,resizable,resizeable');
	oWin.focus();
}