function jsJump(strFrameName,strUrl)
{
  parent.frames[strFrameName].location.href = strUrl;
}

function jsFormJump(strFormName,strFrameName,strUrl)
{
  parent.frames[strFrameName].location.href = strUrl+'&query='+document[strFormName].query.value;
}