function change_div (param,param1)
{
if ('USA'==document.forms[param].elements[param1].options[document.forms[param].elements[param1].selectedIndex].value )
{
  document.getElementById('state2').style.display = 'none';
  document.getElementById('state1').style.display = 'block';
}

if (document.forms[param].elements[param1].options[document.forms[param].elements[param1].selectedIndex].value != 'USA')
{
  document.getElementById('state1').style.display = 'none';
  document.getElementById('state2').style.display = 'block';

}
}
function change_value (form_name,country_name,state_name)
{
   if ('USA'== document.forms[form_name].elements[country_name].options[document.forms[form_name].elements[country_name].selectedIndex].value )
   {
    document.forms[form_name].elements[state_name].value = document.forms[form_name].elements['state_temp'].options[document.forms[form_name].elements['state_temp'].selectedIndex].value;
   }
}

function state_update (form_name,country_name,state_name)
{
  if ('USA'== document.forms[form_name].elements[country_name].options[document.forms[form_name].elements[country_name].selectedIndex].value )
  {
    for (i=0;i<document.forms[form_name].elements['state_temp'].length;i++)
    {
      if (document.forms[form_name].elements['state_temp'][i].value == document.forms[form_name].elements[state_name].value )
      {
          document.forms[form_name].elements['state_temp'].selectedIndex = i;
      }
    }
    document.forms[form_name].elements[state_name].value = '';
  }
}

function change_website (form_name,element_name)
{
if (document.forms[form_name].elements[element_name].value != '')
{
if (document.forms[form_name].elements[element_name].value.substring(0,7) != 'http://')
{
document.forms[form_name].elements[element_name].value = 'http://' + document.forms[form_name].elements[element_name].value;
}
}
}


function popupWindow(file , title , w ,h){
  _w = w+90;
  if (_w < 500) _w = 500;
  _h = h+50;
  if (_h < 300) _h = 300;
  myWin=open("","PictureWindow","width="+_w+",height="+_h+",status=no,toolbar=no,menubar=no,scrollbars=no");
  myWin.document.open();
  myWin.document.write("<html><head><title></title></HEAD>");
  myWin.document.write("<body  marginheight=0 marginwidth=0 topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0> <center><br><img src=" +file+ " border=0 width=" +w+ " height=" +h+ " onclick='window.close()'></center>");
  myWin.document.write("</body></html>");
  myWin.document.close();
}
