<!--
function displayWindow(url, width, height, resize) {
        window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=' + resize + ',scrollbars=yes,menubar=no,status=no' );
}



function SwapOut(name,tname) {
	var temp;
	temp = "document."+ name +".src = "+ tname +"f.src";
	eval(temp);
	return true;
}

function SwapBack(name,tname) {
	var temp;
	temp = "document."+ name +".src = "+ tname +".src";
	eval(temp);
	return true;
}

function addBookmark() {
  var ID, Url, strcon, Title, cnt, fno, form_s;
  strcon = "&" ;
	form_s = document.forms.length;
	cnt = 0;
	fno = 0;
	while (cnt < form_s) {
		if (document.forms[cnt].name == "MyForm") {
			fno = cnt;
			break ;
		}	
		cnt++;	
	}
	if (fno > 0 ) {
	  ID = window.document.MyForm.ID.value;
	  Title = window.document.MyForm.Title.value;
		Url = location.href.toString();
	  if (Url.search("News=") == -1) 
			strcon = "?" ;
  
	  if (Url.search("ID=") == -1)
		{ 
		 Url= Url + strcon;
		 Url = Url + "ID=" + ID;
		}

	  if (window.external)
		  external.AddFavorite(Url ,"ThisisCyberia.com - " + Title);
	  else
		  alert("Your browser doesn't support this feature.");
	}
	else {
	  var Title, Url;
	  Title = window.document.title;
	  Url = location.href.toString();
	  if (window.external)
	    external.AddFavorite(Url,Title);
		else
	    alert("Your browser doesn't support this feature.");
	}
		
}

function reSize()
{
	var i;
	var oBody;
	var oFrame;
	for (i=0;i<parent.frames.length;i++)
	{
		if (window.name == parent.frames(i).name)
		{
		oBody	=	parent.frames(i).document.body;
		oFrame	=	parent.document.all(parent.frames(i).name);
		oFrame.style.height = oBody.scrollHeight + (oBody.offsetHeight - oBody.clientHeight);
		//oFrame.style.width = oBody.scrollWidth + (oBody.offsetWidth - oBody.clientWidth);
		}
	}
}
//-->

