/* load another section page */
function getURL(url){
	top.location.href= url;  
  }
/* load help and about documentation*/
function openDOC(url2){
	top.documentation.location.href= url2 
  }
/* load function patterns*/  
function loadPatterns(url3){
	top.function_patterns.location.href= url3
  }
/* load pattern source*/  
function loadSource(url4){
	top.pattern_source.location.href= url4
  }
/* reset form */
 function doReset(){
   document.ArchfunForm.sequence.value = ""
   document.ArchfunForm.secondaryStructure.value = ""
   document.ArchfunForm.pvalue.value = "inicial"
   document.ArchfunForm.maxShow.value = "inicial"
  }
/* submit query */
function doSubmit(){
   document.ArchfunForm.submit();
  }
/* load help documentation from INDEX page*/
function sendV(f){
var val = f;
location.href='/archfun/help.html'+'?'+val;
}
/* retrieve help documentation from URL and load it*/
function getV(){
var val = location.href.split('?');
if (val[1] == null) {
return false;
}
top.documentation.location.href= val[1];
}
