// find out if 'window.location' already contains an "?", in that case the next seperator should be an '&':
var thisUrl = window.location.href;
var hasLocationQustionmark=thisUrl.indexOf('?');
if (hasLocationQustionmark==-1) {
	nextseperator = '?';
} else {
	nextseperator = '&';
}

if ((self == top) || (parent.frames.length == 1)){
  document.write(
		'<FRAMESET COLS="173,*" frameborder="NO" border="0" framespacing="0">' +
	//'<FRAMESET ROWS="69,*,69">' +
	'<FRAMESET ROWS="69,*">' +
		'<FRAME SRC="../logo.php" NAME="logo" SCROLLING=NO NORESIZE>' +
		'<FRAME SRC="../' + land + '/leftNav.php" NAME="leftNav"  SCROLLING=AUTO NORESIZE>' +
		//'<FRAME SRC="../leftBottom.html" NAME="leftBottom" SCROLLING=NO NORESIZE>' +
	'</FRAMESET>' +
	'<FRAMESET ROWS="*,22">' +
		'<FRAMESET COLS="5,614,7">' +
			'<FRAMESET ROWS="70,*">' +
				'<FRAME SRC="../topLeft.html" NAME="topLeft" SCROLLING=NO NORESIZE>' +
				'<FRAME SRC="../left.html" NAME="left" SCROLLING=NO NORESIZE>' +
			'</FRAMESET>' +
			'<FRAMESET ROWS="70,*">' + 
				'<FRAME SRC="../' + land + '/topNav.php?nav=1" NAME="topNav" SCROLLING=NO NORESIZE>' +
				//'<FRAME SRC="' + window.location + '" NAME="content" NORESIZE>' +
				'<FRAME SRC="' + window.location + nextseperator + 'land=' + land + '" NAME="content" NORESIZE>' +
			'</FRAMESET>' +
			'<FRAMESET ROWS="70,*">' +
				'<FRAME SRC="../topRight.html" NAME="topRight" SCROLLING=NO NORESIZE>' +
				'<FRAME SRC="../right.html" NAME="right" SCROLLING=NO NORESIZE>' +
			'</FRAMESET>' +
		'</FRAMESET>' +
		'<FRAMESET COLS="530,7">' +
			'<FRAME SRC="../' + land + '/bottomNav.php" NAME="bottomNav" SCROLLING=NO NORESIZE>' +
			'<FRAME SRC="../right_end.html" NAME="right_end" SCROLLING=NO>' +
		'</FRAMESET>' +
	'</FRAMESET>' +
'</FRAMESET>'
);
}