if (document.images) {

	contactOn = new Image
	contactOff = new Image
	contactOn.src = '/pix/menu/menu6_off.jpg'
	contactOff.src = '/pix/menu/menu6_on.jpg'

	homeOn = new Image
	homeOff = new Image
	homeOn.src = '/pix/menu/menu0_off.jpg'
	homeOff.src = '/pix/menu/menu0_on.jpg'

	fs_drmOn = new Image
	fs_drmOff = new Image
	fs_drmOn.src = '/pix/inside_drm_solution.jpg'
	fs_drmOff.src = '/pix/inside_drm_solution_on.jpg'

	fs_wlOn = new Image
	fs_wlOff = new Image
	fs_wlOn.src = '/pix/inside_vod_wl_solution.jpg'
	fs_wlOff.src = '/pix/inside_vod_wl_solution_on.jpg'

	fs_keyOn = new Image
	fs_keyOff = new Image
	fs_keyOn.src = '/pix/inside_turnkey_solution.jpg'
	fs_keyOff.src = '/pix/inside_turnkey_solution_on.jpg'

	fs_encOn = new Image
	fs_encOff = new Image
	fs_encOn.src = '/pix/inside_encoding_solution.jpg'
	fs_encOff.src = '/pix/inside_encoding_solution_on.jpg'

	fs_titOn = new Image
	fs_titOff = new Image
	fs_titOn.src = '/pix/inside_content_solution.jpg'
	fs_titOff.src = '/pix/inside_content_solution_on.jpg'

	}

else

	{

	contactOn = ""
	contactOff = ""
	homeOn = ""
	homeOff = ""
	fs_drmOn = ""
	fs_drmOff = ""
	fs_wlOn = ""
	fs_wlOff = ""
	fs_keyOn = ""
	fs_keyOff = ""
	fs_encOn = ""
	fs_encOff = ""
	fs_titOn = ""
	fs_titOff = ""


	}

function popWindow(URL, x, y)	{
  	newWindow = window.open(URL,"large","width="+x+",height="+y+"");
	}
function popWindow2(URL, x, y)	{
  	newWindow = window.open(URL,"large","width="+x+",height="+y+",scrollbars=yes,resizable=yes");
	}

function Form1_Validator(theForm)
{
 if (theForm.name.value == "")
        {
          alert("Please enter your Name");
          theForm.name.focus();
          return (false);
        }

 if (theForm.company.value == "")
        {
          alert("Please enter your Company Name.");
          theForm.company.focus();
          return (false);
        }

 if (theForm.phone.value == "")
        {
          alert("Please enter your Telephone Number.");
          theForm.phone.focus();
          return (false);
        }

 if (theForm.email.value == "")
        {
          alert("Please enter your Email Address.");
          theForm.email.focus();
          return (false);
        }

 if (theForm.address.value == "")
        {
          alert("Please enter your Address.");
          theForm.address.focus();
          return (false);
        }

 if (theForm.city.value == "")
        {
          alert("Please enter your City.");
          theForm.city.focus();
          return (false);
        }

 if (theForm.state.value == "")
        {
          alert("Please enter your State.");
          theForm.state.focus();
          return (false);
        }

 if (theForm.zip.value == "")
        {
          alert("Please enter your Zip or Postal Code.");
          theForm.zip.focus();
          return (false);
        }

 if (theForm.country.value == "")
        {
          alert("Please enter your Country.");
          theForm.country.focus();
          return (false);
        }

 if (theForm.message.value == "")
        {
          alert("Please enter your Message.");
          theForm.message.focus();
          return (false);
        }


        return (true);
}