		var newwindow;
		function popup(url) {
			newwindow=window.open(url,'name','height=550,width=690,left=800,top=300,resizable=no,scrollbars=no,toolbar=no,status=no,location=no,menubar=no,directories=no');
			if (window.focus) {
				newwindow.focus()
			}
		}

		function popupLG(url) {
			newwindow=window.open(url,'name','height=680,width=810,left=800,top=300,resizable=no,scrollbars=no,toolbar=no,status=no,location=no,menubar=no,directories=no');
			if (window.focus) {
				newwindow.focus()
			}
		}

		/* Play a sample video from the corporate pages and track it in Google Analytics*/
		function popupWD(url) {
                        OURTrackPageView("watched-sample-video-from-corporate");
			newwindow=window.open(url,'name','height=560,width=850,left=800,top=300,resizable=no,scrollbars=no,toolbar=no,status=no,location=no,menubar=no,directories=no');
			if (window.focus) {
				newwindow.focus()
			}
		}

		// Close popup window and redirect main window to subscribe page
		function redirect() {
			opener.location.href = "http://www.marketmotive.com/knowledge/index.php?option=com_acctexp&task=subscribe";	
			self.close();
		}









