// JavaScript Document

function goUrl(url)
{
	window.location.href=url;
	
	}
	
function CopyHeight(to,form,add){

	if(!to){ return}
	if(!form){ return}

	var toElement=document.getElementById(to);
	var formElement=document.getElementById(form);
   toElement.style.height=formElement.scrollHeight;
   if(add)
   {  
	     toElement.style.height=parseInt(toElement.style.height)+add;
}

}

