// JavaScript Document

var theURL = '/survey.html';
var width  = 500;
var height = 650;

function popWin() {
newWindow = window.open(theURL,'newWindow','toolbar=no,menubar=no,resizable=no,scrollbars=no,status=no,location=no,width='+width+',height='+height);
}