var newWindow;
function openNewWin(winTarget) {
    newWindow=window.open(winTarget,"Closer","toolbar=0,width=700,height=500,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,left=80,top=80,screenX=80,screenY=80");
    if (window.focus) { newWindow.focus(); }
}

var regWindow;
	function register_now() {
				regWindow=window.open("https://www.weboom.com/streamlinevents/kinetic/conference2010/forms/index.html","Registration","toolbar=0,width=950,height=750,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1");
				regWindow.focus();
	}

function printWindow() {
	if (window.print) window.print();
	else alert("Please choose File... Print... from your Browser Menu.");
}

function popupWin(popupTarget, popupName, popupArgs) {
				var popupWindow;
				popupWindow = window.open(popupTarget, popupName, popupArgs);
				if (window.focus) {popupWindow.focus();}
			}