var str = location.search;
var writeFrames = (str.indexOf("nowritefs")) && (top.window.length == 0);
if (writeFrames) {
	if (str == "") {
		var mainFrame = window.location + "?nowritefs";
	}
	else {
		var mainFrame = window.location + "&nowritefs";
	}
	document.write (
	'<frameset cols="50%, 611, 50%" border="0" frameborder="0" framespacing="0">',
    	'<frame src="i_black.htm" name="left" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" noresize>',
	 	'<frame src="', mainFrame, '" name="main" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" noresize>',
	 	'<frame src="i_black.htm" name="right" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" noresize>',
	'</frameset>'
	);
}