function deleteFeedback(msgId)
{
	if (confirm('Are you sure you want to delete?')) {
		window.location.href = 'index.php?deletefeedback&msg=' + msgId;
	}
}
function processFeedback(msgId)
{ window.location.href = 'index.php?processfeedback&msg=' + msgId; }
function unprocessFeedback(msgId)
{ window.location.href = 'index.php?unprocessfeedback&msg=' + msgId; }

function deleteSurvey(msgId)
{
	if (confirm('Are you sure you want to delete?')) {
		window.location.href = 'index.php?deletesurvey&msg=' + msgId;
	}
}
function processSurvey(msgId)
{ window.location.href = 'index.php?processsurvey&msg=' + msgId; }
function unprocessSurvey(msgId)
{ window.location.href = 'index.php?unprocesssurvey&msg=' + msgId; }

function deleteOrder(msgId)
{
	if (confirm('Are you sure you want to delete?')) {
		window.location.href = 'index.php?deleteorder&msg=' + msgId;
	}
}
function processOrder(msgId)
{ window.location.href = 'index.php?processorder&msg=' + msgId; }
function unprocessOrder(msgId)
{ window.location.href = 'index.php?unprocessorder&msg=' + msgId; }

function deleteExtract(msgId)
{
	if (confirm('Are you sure you want to delete?')) {
		window.location.href = 'index.php?deleteextract&msg=' + msgId;
	}
}

function viewSource(srccatId) {
	if (srccatId != '') {
		window.location.href = 'index.php?page=list-source&srccat=' + srccatId;
	} else {
		window.location.href = 'index.php?page=list-source';
	}
}

function popUpWindow(URLStr, left, top, width, height) {
  var popUpWin=0;
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  popUpWin.focus();
}

function popUpResize(URLStr, left, top, width, height) {
  var popUpWin=0;
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  popUpWin.focus();
}
