picturebox = 0;

function flashwindow(path,movie,title,width,height,scroll) {
if (!picturebox || picturebox.closed)
{ // do nothing
}
else
{ picturebox.close(); }
picturebox = window.open("","_blank","toolbar=0,location=0,status=0,menubar=0,scrollbars="+scroll+",resizable=0,height="+(height+10)+",width="+(width+10)+",top=100,left=100")
picturebox.document.write ("<html><head><title>"+title+"</title></head>\n")
picturebox.document.write ("<body marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\" bgcolor=\"#FFFFFF\" style=\"margin:0px; padding:0px;\">\n")
picturebox.document.write ("<center><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0\" ID=\""+title+"\" width=\""+width+"\" height=\""+height+"\">\n")
picturebox.document.write ("	<param name=\"movie\" value=\""+path+movie+"\">\n")
picturebox.document.write ("	<param name=\"loop\" value=\"false\">\n")
picturebox.document.write ("	<param name=\"quality\" value=\"high\">\n")
picturebox.document.write ("	<param name=\"bgcolor\" value=\"#000000\">\n")
picturebox.document.write ("	<embed src=\""+path+movie+"\" quality=\"high\" bgcolor=\"#000000\" loop=\"false\" width=\""+width+"\" height=\""+height+"\" type=\"application/x-shockwave-flash\" pluginspace=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\">\n")
picturebox.document.write ("	</embed>\n")
picturebox.document.write ("</object></center>\n")
picturebox.document.write ("</body></html>\n")
}


function imagewindow(path,image,title,width,height,scroll) {
if (!picturebox || picturebox.closed)
{ // do nothing
}
else
{ picturebox.close(); }
picturebox = window.open("","_blank","toolbar=0,location=0,status=0,menubar=0,scrollbars="+scroll+",resizable=0,height="+(height)+",width="+(width)+",top=100,left=100")
picturebox.document.write ("<html><head><title>"+title+"</title></head>\n")
picturebox.document.write ("<body marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\" bgcolor=\"#FFFFFF\" style=\"margin:0px; padding:0px;\">\n")
picturebox.document.write ("	<center><a href=\"javascript:window.close()\"><img src=\""+path+image+"\" border=\"0\" width=\""+width+"\" height=\""+height+"\" title=\""+title+"\" alt=\""+title+"\" /></a>\n")
picturebox.document.write ("</center></body></html>\n")
}
