﻿var SiteRoot = "";

function initSiteRoot(site_root) {
	SiteRoot = site_root;
}

function loadVideo(container, width, height, video) {
	var flashvars = { video_path: video, flash_width: width , flash_height: height };
	var params = { /*wmode: "transparent",*/ allowFullScreen: true, bgcolor: "000000" };
	swfobject.embedSWF(SiteRoot + "Flash/Video_Player.swf", container, width, height, "9.0.0", "expressInstall.swf", flashvars, params);
}

function showMessage(msg) {
	$(document).ready(function() {
		$('#dialog').html("<p>" + msg + "</p>");
		$('#dialog').dialog('open');
	});
}

$(document).ready(function() {
	$('#dialog').dialog({
		autoOpen: false,
		//width: 600,
		modal: true,
		buttons: {
			"OK": function() { 
				$(this).dialog("close");
			}
		}
	});

	// Remove banner container unless it has some content
	if ($('.banner_container').children().length == 0) {
		//showMessage($('.banner_container').text().length);
		$('.banner_container').remove();
	}
});


