function ShowModalDialog(__baseHref, __url, __title, __width, __height)
{
	var 
		modal = window.showModalDialog(__baseHref + 'iframe.aspx?url=' 
			+ escape(__url) + '&wh=' + __width + '&ht=' + __height + '&title=' 
			+ __title, null, 'dialogWidth=' + __width + 'px; dialogHeight=' + __height 
			+ 'px; scroll=no; status=no; toolbar=no; help=no;');
		
	return modal;

}



function CreatePrintPage(__baseHref, __content, __title)
{
	var w = window.open();
		
	w.document.write('<html><head>');
	w.document.write('<title>' + '' + __title + '</title>');
	w.document.write('<base href="' + location.hostname + __baseHref + '"></base>');
	w.document.write('<link href="rc/css/renascence.css" type="text/css" rel="stylesheet" />');
	w.document.write('<link href="rc/css/default-print.css" type="text/css" rel="stylesheet" />');
	w.document.write('</head><body onload="window.print()">');
	w.document.write('<table cellspacing="0" cellpadding="0" width="100%" border="0">')
	w.document.write('<tr><td><img src="/images/templates/default/00000021.gif" width="371" height="36"></td></tr>');
	w.document.write('<tr><td><img src="/images/templates/default/s.gif" width="1" height="5"></td></tr>');
	w.document.write('<tr><td><img src="/images/templates/default/00000011.gif" width="100%" height="1"></td></tr>');
	w.document.write('<tr><td>&nbsp;</td></tr>');
	w.document.write('<tr><td>');
	w.document.write('<table cellspacing="0" cellpadding="0" width="100%" border="0">')
	w.document.write('<tr><td width="1%">&nbsp;</td><td width="98%">');
	w.document.write('<div class="text-content-h-title">' + __title + '</div><p>');
	w.document.write('' + __content.innerHTML);
	w.document.write('</td><td width="1%">&nbsp;</td></tr>');
	w.document.write('</table>');
	w.document.write('</td></tr>');
	w.document.write('</table>');
	w.document.write('</body></html>');
		
}
