function surveyPopup(url)
{
		var windowObject;
		var windowName = "surveyPopup";
		var width = 476;
		var height = 400;
		if (arguments.length == 3)
		{
				height = arguments[1];
				width = arguments[2];
		}
		else if (arguments.length == 4)
		{
				height = arguments[1];
				width = arguments[2];
				windowName = arguments[3];
		}
		o = "width="+width+",height="+height+",resizable=0,status=0,left=0,top=0,menubar=0,scrollbars=yes,toolbar=0,location=0,directories=0";
		windowObject = window.open(url, windowName, "height=" + height + ",innerHeight=" + height + ",width=" + width + ",innerWidth=" + width + ",screenX=0,screenY=0,scrollbars=yes,resizable=0");
		windowObject.focus();
}