﻿function GetFlashHTML(MovieSource, MovieWidth, MovieHeight, ImageSource) {

	var Return = "";
	Return += '<object style="background:url(\'' + ImageSource + '\');" type="application/x-shockwave-flash" data="' + MovieSource + '" width="' + MovieWidth + '" height="' + MovieHeight + '">';
	Return += '	<param name="movie" value="' + MovieSource + '" />';
	Return += '	<param name="wmode" value="transparent" />';
	Return += '	<img src="' + ImageSource + '" alt="" />';
	Return += '</object>';
	return Return;
}
function EditPhotoGallery(ModuleID) {
	var Window = GetRadWindowManager().Open("Modules/Photo Gallery/Edit.aspx?ModuleID=" + ModuleID);
	if (GetHeight() > 550) {
		Window.SetSize(750, 500);
	}
	else {
		Window.SetSize(GetWidth() - 70, GetHeight());
		Window.MoveTo(35, GetPosition());
	}
	Window.SetTitle("Defero Photo Gallery Editor");
}