function PopupPageSurvey(widthPopup,heightPopup,titleBarText,iframeLink)
{
	var google2HostName = window.location.hostname;
	var google2Domain = google2HostName.substring(google2HostName.indexOf('.')+1,google2HostName.length);
	document.domain = google2Domain;
			$(document).ready(function() 
			{
				$('<iframe id="externalSite" frameborder=0 class="externalSite" src="' + iframeLink + '" />').dialog({
					title: titleBarText,
					autoOpen: true,
					width: widthPopup,
					height: heightPopup,
					modal: true,
					resizable: false,
					autoResize: true

				}).width(widthPopup).height(heightPopup);            
			});
}

