///////////////////////////////////////////////////////////////////////////////
//	System 1.0
//	designed for dojh.hit.bg site

function OpenContentPiece( _FileName, _Title )
{
	if( InternalCompatibilityVersion != icvNSav4 && InternalCompatibilityVersion != icvIE )
    {
    	alert( 'Your browser is not supported by this site. We hardly recommend you to use the latest version of Internet Explorer.' );
    	return;
    }
	var winLeft = ( window.screen.width - 780 ) / 2
	var winTop = ( window.screen.height - 580 ) / 2

	var ContentPieceWindow = window.open( '', '_blank', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,copyhistory=0,top=' + winTop + ',left=' + winLeft + ',	width=780,height=580');
	
	ContentPieceWindow.document.writeln('<head>');
	ContentPieceWindow.document.writeln('<title> ' + _Title + ' </title>');
	ContentPieceWindow.document.writeln('</head>');
	ContentPieceWindow.document.writeln('<frameset rows="45,*,45" border=0>');
	ContentPieceWindow.document.writeln('	<frame src=content-piece-header.html name="contentpieceheader" id="contentpieceheader" marginwidth=0 marginheight=0 scrolling=no noresize>');
	ContentPieceWindow.document.writeln('	<frame src=' + _FileName + ' name="contentpiece" id="contentpiece" marginwidth=0 marginheight=0 scrolling=auto noresize>');
	ContentPieceWindow.document.writeln('	<frame src=content-piece-footer.html name="contentpiecefooter" id="contentpiecefooter" marginwidth=0 marginheight=0 scrolling=no noresize>');
	ContentPieceWindow.document.writeln('</frameset>');
	
	ContentPieceWindow.document.close();
}
