function popUpViewPage(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=3000,height=1123,left = '+((screen.width - 3000) / 2)+',top = ((screen.height - 1123) / 2)');");
}

function viewPaper(url){
	popUpViewPage(url);
	return false;
}
