﻿function SmokeNav(id) {
	var address = new String(document.getElementById(id).value);
	if (address == '') {
		alert('Select a question...');
	}
	else {
		window.location=address;
	}
}