function popup_image(title, uri, width, height)
{
	var popup;
	popup = window.open('', 'image', 'height=' + height + ',width=' + width + ',menubar=no, titlebar=no, toolbar=no, location=no');
	popup.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n');
	popup.document.write('<html><head><title>' + title + '</title></head><body style="margin: 0; padding: 0">');
	popup.document.write('<img src="' + uri + '" width="' + width + '" height="' + height + '" style="padding: 0; margin: 0" alt="' + title + '" title="' + title + '" />');
	popup.document.write('</body></html>');
	popup.document.close();
	return false;
}

function popup_webcast(title, uri_swf, width, height)
{
        var popupwin;
   	popupwin= window.open('', 'webcast', 'height=' + height + ',width=' + width + ',menubar=no, titlebar=no, toolbar=no, location=no');
        popupwin.document.write('<html><head><title>' + title + '</title></head><body style="margin: 0; padding: 0">');
        popupwin.document.write('<center><OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" WIDTH="' + width + '" height="' + height + '" CODEBASE="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0">');
	popupwin.document.write('<PARAM NAME=movie VALUE="' + uri_swf + '">');
	popupwin.document.write('<PARAM NAME=play VALUE=true><PARAM NAME=loop VALUE=false><PARAM NAME=quality VALUE=low>');
	popupwin.document.write('<EMBED SRC="' + uri_swf + '" width="' + width + '" height="' + height + '" quality="low" loop="false" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
	popupwin.document.write('</EMBED></OBJECT></center>');
        popupwin.document.write('</body></html>');
        popupwin.document.close();
        return false;
}


