var ImageWithShadow_Template = '<table border="0" cellspacing="0" cellpadding="0" style="background-color: #ffffff;">'
	+'<tr>'
		+'<td>'
			+'<table border="0" cellspacing="0" cellpadding="0" height="5">'
				+'<tr>'
					+'<td><img src="img/picture-bg01.gif" height="5"></td>'
					+'<td><img src="img/picture-bg02.gif" height="5"></td>'
					+'<td style="background-image: url(img/picture-bg03.gif);" width="100%"><img src="img/n.gif"></td>'
					+'<td><img src="img/picture-bg04.gif" height="5"></td>'
					+'<td><img src="img/picture-bg05.gif" height="5"></td>'
				+'</tr>'
			+'</table>'
		+'</td>'
	+'</tr>'
	+'<tr>'
		+'<td>'
			+'<table border="0" cellspacing="0" cellpadding="0">'
				+'<tr>'
					+'<td height="100%">'
						+'<table border="0" cellspacing="0" cellpadding="0" height="100%">'
							+'<tr><td height="5"><img src="img/picture-bg16.gif" height="5"></td></tr>'
							+'<tr><td style="background-image: url(img/picture-bg15.gif);" height="100%"><div style="width: 5px; height: 5px;"></div></td></tr>'
							+'<tr><td height="5"><img src="img/picture-bg14.gif" height="5"></td></tr>'
						+'</table>'
					+'</td>'
					+'<td width="100%"><img src="%img_url%" style="border: solid 3px #FFFFFF;"></td>'
					+'<td height="100%">'
						+'<table border="0" cellspacing="0" cellpadding="0" height="100%">'
							+'<tr><td height="5"><img src="img/picture-bg06.gif" height="5"></td></tr>'
							+'<tr><td style="background-image: url(img/picture-bg07.gif);" height="100%"><div style="width: 5px; height: 5px;"></div></td></tr>'
							+'<tr><td height="5"><img src="img/picture-bg08.gif" height="5"></td></tr>'
						+'</table>'
					+'</td>'
				+'</tr>'
			+'</table>'
		+'</td>'
	+'</tr>'
	+'<tr>'
		+'<td>'
			+'<table border="0" cellspacing="0" cellpadding="0" height="5">'
				+'<tr>'
					+'<td><img src="img/picture-bg13.gif" height="5"></td>'
					+'<td><img src="img/picture-bg12.gif" height="5"></td>'
					+'<td style="background-image: url(img/picture-bg11.gif);" width="100%"><img src="img/n.gif"></td>'
					+'<td><img src="img/picture-bg10.gif" height="5"></td>'
					+'<td><img src="img/picture-bg09.gif" height="5"></td>'
				+'</tr>'
			+'</table>'
		+'</td>'
	+'</tr>'
+'</table>';
//alert( ImageWithShadow_Template );

function ImageWithShadow( img_url, obj_html_id )
{
	if( document.getElementById( obj_html_id ) == null )
	{
		window.setTimeout( function()
		{
			ImageWithShadow( img_url, obj_html_id );
			return;
		}
		, 100 );
		return;
	}
	if( img_url == null ) return false;
	var res = ImageWithShadow_Template;
	var res = res.replace( /\%img_url\%/, img_url );
	document.getElementById( obj_html_id ).innerHTML = res;
	//alert( obj_html_id );
	return;
}

