
function showIllustration (_url, _width, _height)
	{
	window.open(_url, "_blank", "width="+_width+",height="+_height+",resizable=yes");
	}

function insertIllustrationHere (_width, _alignment, _url, _zoomUrl, _zoomWidth, _zoomHeight, _caption)
	{

	// "50%", "right", "images/rcsnews10_tn.gif", "1", "RCSnews offers new "Virtual Newsroom" for radio writers and reporters."

	var newHTML = '';
	newHTML += '<table width='+_width+' align="'+_alignment+'"><tr><td class="illustration">';
	newHTML += '		<img src="'+_url+'" onclick="showIllustration(\"'+_zoomUrl+'\", '+_zoomWidth+', '+_zoomHeight+')" style="cursor:pointer;"><br>';
	newHTML += '	'+_caption+' [Click image to enlarge]';
	newHTML += '</td></tr></table>';
	alert(newHTML);
	document.write(newHTML);
	}

//<script>insertIllustrationHere("50%", "right", "images/rcsnews10_tn.gif", "images/rcsnews10.gif", 600, 440, "RCSnews offers new "Virtual Newsroom" for radio writers and reporters.")</script>
//<script>insertIllustrationHere("50%", "left", "images/rcsnews9_tn.gif", "images/rcsnews9.jpg", 1120, 560, "Newswriters have continuous access to Audio Editor built-in to new RCSnews software for radio news- rooms.")</script>
