var contact_base = "https://www.iix.co.jp/"

//お問い合わせ(全体)
function contact_home(){
  contact('contact/form/form.html');
  return false;
}

//お問い合わせ(製品)
function contact_product(model){
  contact('contact/form/form_product.html?model=' + model);
  return false;
}

//お問い合わせ(ASP)
function contact_asp(){
  contact('contact/form/form_asp.html');
  return false;
}

//お問い合わせ(採用-ソフト)
function contact_recruit_soft(){
  contact('contact/form/form_recruit_soft.html');
  return false;
}

function contact(url){
  var contact_url = contact_base + url;
  window.open(contact_url, 'contact', 'width=800, height=600, menubar=no, toolbar=no, scrollbars=yes, resizable=yes, location=yes, status=yes' );
}

