function updateCurWinHeight()
{	
	document.all("BSForum").height = document.all['forum'].contentWindow.document.body.scrollHeight;								
}

function changeCurWinState()
{	
	if (document.all['forum'].readyState == 'complete')
	{		
		document.all("BSForum").height = document.all['forum'].contentWindow.document.body.scrollHeight;
		document.all['forum'].contentWindow.document.body.onclick = function ()
		{
			document.all("BSForum").height = document.all['forum'].contentWindow.document.body.scrollHeight;
		}
	}
}

function getParam(name, url)
{
	var pname=name + '=';		
	if (url=="") {url=window.location.href;}
	var start=url.indexOf("?");
	var ps=url.substring(start,url.length)	
	if(ps.length > 0)
	{
		start=ps.indexOf(pname);
		if(start!=-1)
		{
			start+=pname.length;
			var end=ps.indexOf('&',start);
			if(end==-1) end=ps.length;
			return unescape(ps.substring(start,end));
		}
	}
	return null;
}

function setForum(defaultID)
{	
	var cfid = getParam("cfid", window.location.href.toLowerCase())
	if (cfid != null) document.all("forum").src = "http://www.shlook.co.il/htmls/forum.aspx?cfid=" + cfid
	else document.all("forum").src = "http://www.shlook.co.il/htmls/forum.aspx?cfid=" + defaultID
}

function setForumInForumASPX(defaultID, customHtm)
{	
	var cfid = getParam("cfid", window.location.href.toLowerCase())
	if (cfid != null) { document.all("BSFormFrame").src = "http://www.shlook.co.il/CustHTMs/" + customHtm + ".htm?cfid=" + cfid }	
	else { document.all("BSFormFrame").src = "http://www.shlook.co.il/CustHTMs/" + customHtm + ".htm?cfid="  + defaultID }
}