/* function FlashWindow displays image in table with two cells. Left cell for picture, right cell for description. Second row for a 'close ' button. Add 100 to width and 80 to height of image to accommodate heading, text and close button. */
	function FlashWindow(Page,Size,Heading,Text) {
    var closeButton = "<div align='center'><form><input style='color:#ffffff; background-color:#000000' type='button' name='button1' value='Close' onClick='window.close();'><\/form><\/div>";
		FlashWin = window.open("", "picture", Size)
		FlashWin.document.write("<html><head><title>CNY Corvair Club<\/title><\/head><body bgcolor='#000000' text='#FFFFFF'><table cellspacing='2'><th>", Heading, "<\/th>") 

		FlashWin.document.write("<tr><td align='left'><div style='border-color: blue; border-top-width: thin; border-bottom-width: thin; border-left-width: medium; border-right-width: medium; border-top-style:solid; border-bottom-style:solid; border-left-style:none; border-right-style: none;float:right; padding:6px; margin:6px;'><object height='250' width='300'><param name='movie' value='show.swf'><embed src='",Page, "' height='210' width='300'></object></div><\/td>")

		FlashWin.document.write("<td>", Text, "<br><\/td><\/tr>")
		FlashWin.document.write("<tr><td colspan='2'>", closeButton, "<\/td><\/tr>")
        FlashWin.document.write("<\/table><\/body><\/html>")
		FlashWin.document.close()
		}