jQuery(document).ready(function(){  
	jQuery("#IGCtvBtn").click(function(){ 
		centerPopup();
		openIGCtvPopup();
	}); 
	//If the User resizes the window, adjust the #backgroundPopup height
	jQuery(window).bind("resize", resizeWindow);
	function resizeWindow( e ) {
		centerPopupAfter();
	}
	 // Open popup directly on page load
	 var videoID = jQuery.getUrlVar('videoID');
	if (videoID){
		centerPopup();
		openIGCtvPopup();
	 }
	// Open popup directly from link
	jQuery(".IGCtvPageLink").click(function(){ 
		centerPopup();
		openIGCtvPopup();
	}); 
});  