obj=document.getElementsByTagName('object');
for (var i=0; i<obj.length; ++i)
  obj[i].outerHTML=obj[i].outerHTML;

function wopen1() { window.open('http://www.alphamedia.co.jp/products/syugyou/kaiketu_img.html','','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width=800,height=710') }

function wopen2() { window.open('http://www.alphamedia.co.jp/products/syugyou/touchpanel_img.html','','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width=800,height=620') } 

function wopen3() { window.open('http://www.alphamedia.co.jp/assets/images/kaiketu_03.gif','','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=500,height=620') } 

function wopen4() { window.open('http://www.alphamedia.co.jp/assets/images/kaiketu_02.gif','','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=850,height=500') } 

function wopen5() { window.open('http://www.alphamedia.co.jp/assets/images/kaiketu_04.gif','','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=800,height=300') } 

function wopen6() { window.open('http://www.alphamedia.co.jp/assets/images/kaiketu_01.gif','','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=830,height=830') } 

function wopen7() { window.open('http://www.alphamedia.co.jp/assets/images/map_alpha.gif','','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=550,height=400') } 
<!--
function chk(){
 flag = document.myFORM.myCHK.checked;
 if (flag) {
  return true;
  }
 else {
  alert("同意いただけない場合は、お問い合わせフォームはご利用いただけません");
  return false;
  }
}
//-->

function clearFormAll() {
    for (var i=0; i<document.forms.length; ++i) {
        clearForm(document.forms[i]);
    }
}
function clearForm(form) {
    for(var i=0; i<form.elements.length; ++i) {
        clearElement(form.elements[i]);
    }
}
function clearElement(element) {
    switch(element.type) {
        case "hidden":
        case "submit":
        case "reset":
        case "button":
        case "image":
            return;
        case "file":
            return;
        case "text":
        case "password":
        case "textarea":
            element.value = "";
            return;
        case "checkbox":
        case "radio":
            element.checked = false;
            return;
        case "select-one":
        case "select-multiple":
            element.selectedIndex = 0;
            return;
        default:
    }
}
