<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->

// function to copy billing address to shipping address function
function CopyAddress(checkbox)
{

  var f = document.form1;

  if ( checkbox.checked == false ) { return; }

  f.s_fname.value = f.fname.value;
  f.s_lname.value = f.lname.value;
  f.s_address1.value = f.address1.value;
  f.s_address2.value = f.address2.value;
  f.s_city.value = f.city.value;
  f.s_state.value = f.state.value;
  f.s_zipcode.value = f.zip.value;
  f.s_country.value = f.country.value;
 
}  

<!--
function SubmitForm()
{
document.form1.submit();
}
//-->

<!--Opens a new window
function NewWindow()
{
window.open('ccvc.cfm','wcs','width=300,height=200,resizable=yes,top=10,left=10');
}

//-->

<!--hide
function opensoundconsole()
{
window.open('soundconsole.cfm','wcs','width=200,height=100,resizable=no,top=10,left=200');
}

function popitup(url)
{
	newwindow=window.open(url,'name','height=400,width=400,top=20,left=300');
	newwindow.document.bgColor="black";
	if (window.focus) {newwindow.focus()}
	return false;
	
}
//-->


