function popUp(htmlName,windowType, popUpId) {
	var newWindow = null;
	switch (windowType.toUpperCase()) {
		case "SEEYOULATERPOPUP":
			var htmlName = 'tvokids/templates/popup/seeYouLater.html?theURL=' + htmlName +"&";
			htmlName = htmlName.replace("http:","HTTP");

			var w = 500;
			var h = 449;
			LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
			TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
			settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizeable=no,menubar=no';

			var popUpWindow = window.open('/' + htmlName,'nm',settings);
			if (popUpWindow.opener == null) { 
				popUpWindow.opener = self;
			}
		break;
	}
}
