function editDynamicContent(id){
	szFeatures = 'width=600,height=470,left=200,top=200,screenX=200,screenY=200,status=no,menubar=no,resizable=no,toolbar=no,scrollbars=no';
	myWindow = window.open('site_content.php?SessionID=' + szSessionID + '&id=' + id, 'winHTMLUpdate', szFeatures);
	myWindow.focus();
}

function showInfo(id){
	window.location.href ='info_detail.php?SessionID=' + szSessionID + '&id=' + id;
}

function editInfo(id){
	szParams = '&id=' + id;
	szFeatures = 'width=730,height=470,left=200,top=200,screenX=200,screenY=200,status=no,menubar=no,resizable=yes,toolbar=no,scrollbars=yes';
	myWindow = window.open('info_update.php?SessionID=' + szSessionID + szParams, 'winHTMLUpdate', szFeatures);
	myWindow.focus();
}

function editStudy(id){
	szParams = '&id=' + id;
	szFeatures = 'width=600,height=470,left=200,top=200,screenX=200,screenY=200,status=no,menubar=no,resizable=no,toolbar=no,scrollbars=no';
	myWindow = window.open('study_update.php?SessionID=' + szSessionID + szParams, 'winHTMLUpdate', szFeatures);
	myWindow.focus();
}

function editUser(id){

	szParams = '&id=' + id;
	szFeatures = 'width=480,height=470,left=200,top=200,screenX=200,screenY=200,status=no,menubar=no,resizable=no,toolbar=no,scrollbars=no';
	myWindow = window.open('user_update.php?SessionID=' + szSessionID + szParams, 'winHTMLUpdate', szFeatures);
	myWindow.focus();
}
