function show(sty,id) {
	document.getElementById(id).style.visibility = sty;
}

function hilite(obj){
	obj.style.backgroundColor="#BEC5DE";
}

function normal(obj){
	obj.style.backgroundColor="#f7f3f7";
}

function chgimg(a, b){
	document.images["img" + a].src = img[b].src;
}



function Check(){
    if(document.myform.key.value==""){
        alert("マンション名または住所を入力して下さい");
        return false;
    }
    return true;
}
function count(){
    if(document.enq2.enq_tx.value.length>1000){
        alert("1000文字以内でご記入下さい。");
        return false;
	}
}


