function doButtonClick( openstring, ttarget ) {
	window.open(openstring, ttarget);
}

function CreateFlash(div, movie, source, width, height) {
	shtml = "<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" WIDTH=\"" + width + "\" HEIGHT=\"" + height + "\" id=\"slideshow\" ALIGN=\"\">";
	shtml += "<PARAM NAME=\"movie\" VALUE=\"" + movie + "\">";
	shtml += "<PARAM NAME=\"quality\" VALUE=\"high\">";
	shtml += "<PARAM NAME=bgcolor VALUE=#000000>";
	shtml += "<PARAM NAME=wmode VALUE=transparent>";
	shtml += "<EMBED src=" + source + "></EMBED>";
	shtml += "</OBJECT>";
	
	element = document.getElementById(div);
	element.innerHTML = shtml;
}