
$(function() {
	$("#socsanews").dialog({
		autoOpen: false,
		height: 510,
		width: 800,
		modal: true
		
	});
	
	$("#deptnews").dialog({
		autoOpen: false,
		height: 510,
		width: 800,
		modal: true
		
	});


});

function news(cnt){
	document.getElementById("hdnsocsanews").value = cnt;
	document.getElementById("frmsocsanew").src = "news.html";
	$('#socsanews').dialog('open');
}

function departmentNews(cnt){
	document.getElementById("hdnsocsanews").value = cnt;
	document.getElementById("frmdeptnews").src = "news.html";
	$('#deptnews').dialog('open');
}
	

