// JavaScript Document

var showSurvey = false;

function runSurvey(theURL,winName,options) {
	if(showSurvey){
		surveyWin = window.open(theURL,winName,options);
	}
	return true;
}
function runDefaultSurvey() {

	theURL = 'http://www.nzholidayheaven.com/site-survey.htm';
	winName = 'survey';
	options = 'width=500,height=400,scrollbars=yes,statusbar=no';
	
	return runSurvey(theURL,winName,options);
}
