<!-- 
function ExhibitorPopup(xUrl,xWinName) {
	var website = 'http://www.goeshow.com/techconnect/2010/';
	var zurl = website + xUrl;
	var winleft = (screen.width - 650) / 2;
	var winUp = (screen.height - 500) / 2;
	winProp = 'width=650,height=500,left='+winleft+',top='+winUp+',scrollbars=yes,resizable=1';
    newwindow = window.open(zurl, xWinName, winProp );
	if (window.focus) {newwindow.focus()}
		return false;
}
-->