$("document").ready(function () {
	$(".viewBtn").click(function () {
	getViewTwo(this.name);
	});
});


function getViewTwo(work_id)
{
	height = 625;
	width = 600;
	var newLeft = (window.screen.availWidth - width) / 2;
	var newHeight = (window.screen.availHeight - height) /2;
	var url = 'index.php/fa/c.secondView/work_id/' + work_id;
	var objPopup = window.open(url,'detailWin','height=' + height + ',width=' + width + ',left=' + newLeft +',top=' + newHeight + ',menubar=0,status=0,resizable=1,scrollbars=0,directories=0');
	objPopup.focus();
}