// JavaScript Document

function formBtnRollOver(id){
  	document.getElementById(id).style.backgroundImage ="url(http://clanbo.com/control/imgs/form_button.gif)";
	document.getElementById(id).style.backgroundRepeat = "repeat-x";
}

function formBtnRollOut(id){
  document.getElementById(id).style.backgroundImage ="none";
}

function openWin(url,name,width,height) { 
    window.open(url,name,"height="+height+",width="+width+",toolbar=no,menubar=no,location=no,status=no,resizable=no");      
}  