function checkPage() {
	if (parent.banner) {
		parent.banner.location.reload();
	}
}

function setContent() {
	strFoo = location.search;
	if (strFoo) {
		strFoo = strFoo.substring(1,strFoo.length);
		window.frames['content'].location=strFoo;
	}
}

function webFrameset_noAd(userId) {
	document.writeln("<FRAMESET COLS=\"175,*\" ONRESIZE='if(document.layer) {history.go(0);}'>");
	document.writeln("<FRAME FRAMEBORDER=\"0\" SRC=\"/PageServlet?pg=webpage_viewPage&ID=" + userId + "\" NAME=\"left\" MARGINHEIGHT=\"0\" MARGINWIDTH=\"0\" NORESIZE>");
	document.writeln("<FRAME FRAMEBORDER=\"0\" SRC=\"/cc/invisible.html\" NAME=\"content\">");
	document.writeln("</FRAMESET>");
}

function webFrameset_withAd(userId) {webFrameset_noAd(userId);}