function openWin(url, width, height) {
	var w = 480, h = 340;
	
	if (screen != null && screen.availWidth != null) {
		w = screen.availWidth;
		h = screen.availHeight;
	}
	
	var popW = width, popH = height;
	var leftPos = (w - popW) / 2, topPos = (h - popH) / 2;
	
	window.open(url,'popup','width='+width+',height='+height+',toolbar=no,menubar=no,status=no,scrollbars=no,resize=no,top='+topPos+',left='+leftPos);
}

var doSurvey = 1;

function showSurvey(){
	if(doSurvey == 1) {
    var popURL = "http://www.philtheflorist.com/twin-cities/popup/survey_pop.php";
    var popTitle = "popupSurvey";
    var popWidth = 375;
    var popHeight = 598;
    var popParms = "scrollbars=no,menu=no,left=2000,top="+popHeight+",screenX=2000,screenY="+popHeight+",resizeable=no,status=no,width="+popWidth+",height="+popHeight;

    var surveyWindow = window.open(popURL, popTitle, popParms);
    self.focus();
	}
}

