//Body onLoad Initialisation
function init() {
	window.resizeTo(800,600);
}

//Cancel and Close Wizard Confirmation
function closeWizard() {
	var response = confirm("Are you sure you want to quit the assistant?\nAll your answers will be lost.");
	if(response) {
		window.close();
	}
}
function closeWizardFinish() {
	window.close();
}

$(document).ready(function(){
	if($('.date-pick').length) {
		$('.date-pick').datePicker();	
	}
});

