// JavaScript Document

function formSubmit(i){
document.getElementById(i).submit();	
}
function gotoPage(i){
window.location.href=i;	
}

function hideDiv(id){
document.getElementById(id).style.display="none";
}
function showDiv(id){
document.getElementById(id).style.display="";
}
function fullImage(target, image, width, height){
document.getElementById(target).innerHTML='<img src=/"'+image+'/" width=\"'+width+'\" height=\"'+height+'\" border=\"0\" alt=\"image\" />';
}
//navOver and out
function navOver(id, image){
document.getElementById(id).src='images/'+image+'';
}
function navOut(id, image){
document.getElementById(id).src='images/'+image+'';
}

//popup
function popup(url, w, h){
window.open(url, '_blank', 'width='+w+', height='+h+', scrollbars=yes');	
}