<!-- OurWebSurvey -->
<!-- All code is strictly copyright of Visualize Systems Ltd, UK, 2002-present -->
<!-- hide script
function confirmPublishStatus()
{
    if (document.frmQuest.txtEndDate.value.length >0) {
		if ((document.frmQuest.selPublishID[document.frmQuest.selPublishID.selectedIndex].value == 'Y') && (document.frmQuest.hidOldPublishID.value != 'Y')) {
			if (ConfirmOperation('Are you sure you wish to publish this survey?')) {
    	        return (true)
			}
			else {
				return (false)
			}
		}
		if ((document.frmQuest.selPublishID[document.frmQuest.selPublishID.selectedIndex].value == 'C') && (document.frmQuest.hidOldPublishID.value != 'C'))  {
			if (ConfirmOperation('Are you sure you wish to close this survey? Once you do this, users will not be able to submit responses. The results will still be available.')) {
    	        return (true)
			}
			else {
		   	    return (false);
			}
		}
   }
	return true;
}

function DoRefresh()
{
    if (document.frmQuest.selQuestionType.selectedIndex == 0) {
        alert("Please select a question type");
        return (false);
    }

    document.frmQuest.hidRefresh.value="true";
    document.frmQuest.submit();
    return (true);
}

function designChangePageNo() {
    document.location.href='q.asp?designmode=yes&p=' + document.frmQuest.selPageNo[document.frmQuest.selPageNo.selectedIndex].value;
}

function submitForm(sButton) {
    document.frmQuest.btnAction.value=sButton;
    if (sButton == 'Delete') {
        if (ConfirmOperation('Are you sure?')) {
            document.frmQuest.submit();
        }
    }
    else {
        document.frmQuest.submit();
    }
}

var popUpWin;
function spawn_window(content, spawn, sizing)
{
if ((popUpWin != null) && (!popUpWin.closed)) {
    popUpWin.close();
}
popUpWin = window.open(content, spawn, sizing);
}
// end hiding -->

