﻿
function openSurvey(surveyID, respondentID) {
    var height = (screen.availheight - 30);
    var width = (screen.availwidth - 10);

    if (height < 200) { height = 600; }
    if (width < 200) { width = 800; }
    
    window.open("http://www.wilkeonline.com/nyweb/respview.asp?firsttime=true&sheme_id=" + surveyID + "&resp_id=" + respondentID + "", "spskema", "resizable=1,left=0,top=0,scrollbars=yes,toolbar=no,location=no,status=no");
}

