function height(){
// sets height of menu bar
var height=45
return(height)}

function width(){
// sets width of menu bar
var width=725
return(width)}

function iheight(){
// sets height of menu bar
var height=460
return(height)}

function iwidth(){
// sets width of menu bar
var width=100
return(width)}

function headerheight(){
// sets height of header
var hheight=60
return(hheight)}

function headerwidth(){
// sets width of header
var hwidth=725
return(hwidth)}

function footerwidth(){
// sets width of header
var hwidth=725
return(hwidth)}

function footerheight(){
// sets width of header
var hwidth=25
return(hwidth)}

function footerwidth2(){
// sets width of header
var hwidth=725
return(hwidth)}

function footerheight2(){
// sets width of header
var hwidth=80
return(hwidth)}




function insertExternalFile(fname,W,H) {
 if (navigator.appName.indexOf("Microsoft")!=-1
  || navigator.appName=="Netscape" 
     && parseInt(navigator.appVersion)>4 ) 
 {
  document.write(''
  +'<IFRAME src="'+fname+'" scrolling="no" frameborder=0 border=0'
  +(W==null ? '' : ' width='+W)
  +(H==null ? '' : ' height='+H)
  +'></IFRAME>'  )
 }
 if (navigator.appName=="Netscape" 
     && parseInt(navigator.appVersion)==4) {
  document.write(''
  +'<ILAYER>'
  +'<LAYER src="'+fname+'" '
  +(W==null ? '' : ' width='+W)
  +(H==null ? '' : ' height='+H)
  +'></LAYER></ILAYER>'
  ) } }




function showData (form, value) {
  window.currentForm = form;
  form.oldAction = form.action;
  form.oldTarget = form.target;
  form.oldMethod = form.method;
  form.action = value;
  form.target = '_top';
  form.method = 'get';
  open ('', form.target);
  form.submit();
}
