/*------------------------------
     注文フォーム用 JavaScript  
  ------------------------------*/

function openwindow1(){
  
window.open("","whatswindow1",'toolbar=0,location=0,scrollbars=0,width=340,height=300,resizable=0');

}




function openwindow2(){
  window.open("","whatswindow1",'toolbar=0,location=0,scrollbars=0,width=260,height=380,resizable=0');

}

function Check(){
  if(confirm("この内容で送信します。よろしいですか？")){
    
return true;
  
}
  else{
return false;
  }

}
