var $overlayPanel;
var $overlay;

function show_overlay() {
    if ( !$overlay ) append_overlay();

	$overlay.height( $(document).height() ) ;
	$overlay.show();
	$overlayPanel.fadeIn();
}

function hide_overlay() {
	$overlay.hide();
	$overlayPanel.hide();
}

function append_overlay() {

	$overlay = $('<div id="overlay"></div>').appendTo( $('BODY') );
	$overlayPanel = $('<div id="overlayPanel"></div>').appendTo( $('BODY') );
    $overlayPanel.html( '<div id="closeOverlay"><a href="javascript:void(hide_overlay());"><img src="/cbmr/sitebase/wrap/common/images/btn.close.gif" width="84" height="19" alt="close" border="0" /></a></div><div id="popupVideo"><iframe src="/cbmr/sitebase/wrap/common/includes/incMediaOverlay.aspx" id="popupVideoFrame" frameborder="0" scrolling="no"></iframe></div>' );
	
    $overlay.click( function() {
        hide_overlay();
    });

}
function resizePopup(iWidth, iHeight) {
	$('#popupVideoFrame').width(iWidth);
	$('#popupVideoFrame').height(iHeight);	
	$('#overlayPanel').width(iWidth);
	$('#overlayPanel').height(iHeight);
	$('#overlayPanel').css({'margin-top': -(iHeight/2)});
	$('#overlayPanel').css({'margin-left': -(iWidth/2)});

}


function openMediaGallery() {

show_overlay();
return false;

openWindow('http://skicb.tv/flash/photo/','HomeLink','width=886,height=756,menubar=Yes,scrollbars=No,resizable=yes')
return false;

//report_pal_large.swf
//http://nz1.resorts-interactive.com/mvp/players/tabs.swf
insertSWFinto('http://us3.resorts-interactive.com/mvp/players/tabs.swf',
	640,20,8,
	'image',
	'http://us3.resorts-interactive.com/images/getFlashPlayerMVP.png',
	'&clientID=362&subCat=7722&time=0&title=1undefined&alt=0&autoStart=1&prefix=http://us3.resorts-interactive.com/',
	'mvpEmbedRP_player7722','transparent','#000000',
	'popupVideo');

}



