function openFlashWindow(MyID, MyWidth, MyHeight)	{
	MyID = parseInt(MyID);
	MyWidth = parseInt(MyWidth);
	MyHeight = parseInt(MyHeight);
	if (MyWidth == 0)	{MyWidth = 480;}
	if (MyHeight == 0)	{MyHeight = 360;}
	if ((MyID > 0) && (MyWidth > 0) && (MyHeight > 0))	{
		var WinURL = "/sixcms/detail.php?id=" + MyID;
		var WinName = "WinFlash";
		var WinOptions = "width=" + MyWidth + ",height=" + MyHeight + ",left=20,top=20,screenX=20,screenY=20,dependent=yes,toolbar=no,scrollbars=no,resizable=no,location=no";
		WinFlash = window.open(WinURL,WinName,WinOptions);
		WinFlash.focus();
	}
}
