
/**************************************************
Specific for: embedded_usb_solution_form.html 
---------------------------------------------
[Yanay Zohar]
***************************************************/
 

function simpleCheck(form)
{

 if (form.name.value == "")
	{
    	alert("Please fill in a Name");
    	form.name.focus(); 
    	return false;
	}


  if (form.company_name.value == "") 
  {
	alert("Please fill in company name");
    	form.company_name.focus();
    	return false;
	} 


	if (form._from_address.value.indexOf("@") == -1 || form._from_address.value.indexOf(".") == -1 || form._from_address.value.indexOf(".")==form._from_address.value.indexOf("@")+1)
	{
		alert("Please fill in a valid email address");
    	form._from_address.focus();
    	return false;
	}
	if (form.phone.value == "")
	{
	    alert("Please fill in a Phone Number.");
	    form.phone.focus();
	    return false;
	}

	
		if (form.country.value == "did_not_select")
	{
		alert("Please select Country.");
    	form.country.focus();
    	return false;
	}


	if (form.product.value == "did_not_select")
	{
		alert("Please select Desired Software Component.");
    	form.product.focus();
    	return false;
	}
	
/*
		// operation systems are 20 checkboxes. Add only if critical! : 
		
		if (form.opearting_system.value == "")
	  {
	    alert("Please fill in Operating System.");
	    form.opearting_system.focus();
	    return false;
	  }
*/

		if (form.usb_controller.value == "did_not_select")
	  {
	    alert("Please fill in USB Controller.");
	    form.usb_controller.focus();
	    return false;
	  }
		if (form.processor.value == "")
	  {
	    alert("Please fill in Processor.");
	    form.processor.focus();
	    return false;
	  }

/*
		(form.time_frame.value == "did_not_select")
	  {
	    alert("Please fill in Time Frame for Development/Production.");
	    form.time_frame.focus();
	    return false;
	  }
*/

	   
	return true;
	
}




function toptext_korean(){

  $('top-into-text').innerHTML="<span class='title1'>" +
                               "&#44480;&#54616;&#51032; &#54532;&#47196;&#51229;&#53944;&#47484; USBware&#50752; &#54632;&#44760; &#49884;&#51089;&#54616;&#49901;&#49884;&#50724;!" +
                               "</span><p>" +
                               "&#51228;&#54408; &#45936;&#51060;&#53552;&#49884;&#53944;&#45208; &#47924;&#47308; &#54532;&#47196;&#51229;&#53944; &#44148;&#49444;&#54021;&#51012; &#50836;&#52397;&#54616;&#49884;&#47140;&#47732;, &#50500;&#47000; &#50577;&#49885;&#51012; &#44592;&#51116;&#54644;&#49436; &#48372;&#45236;&#51452;&#49884;&#44144;&#45208; USBware &#54532;&#47196;&#45909;&#53944; &#47588;&#45768;&#51200;&#51064; Oren Manor&#50640;&#44172; &#51649;&#51217; &#50672;&#46973;&#54616;&#49901;&#49884;&#50724;. &#51204;&#54868; :" +
                               "1-877-514-0537 x255, <a class='links' href='mailto:oren@jungo.com'>oren@jungo.com</a>." +
                               "<br><br>" +
                               "&#54620;&#44397; &#44256;&#44061;&#51068; &#44221;&#50864;, Jungo&#51032; &#54620;&#44397; &#54028;&#53944;&#45320;&#51064; &#46356;&#50724;&#51060;&#51592;(www.dioiz.com)&#47196; &#50672;&#46973;&#54616;&#49892; &#49688; " +
                               "&#51080;&#49845;&#45768;&#45796;. &#51204;&#54868; : 02-785-5709, &#51060;&#47700;&#51068; : <a class='links' href='mailto:dioiz@dioiz.com'>dioiz@dioiz.com</a>" +
                               "<br><br>" +
                               "<div align='right' class='tint-text'> " +
                                  "<a class='links' href='#' onclick='toptext_english(); return false;'>English version</a>" +
                                "</div>";
                                                              

}

function toptext_english(){

  $('top-into-text').innerHTML="<span class='title1'>" +
                               "Jump-start your project with USBware!" +
                               "</span><p>" +
                               "For free project consultancy &amp; Product data-sheets, <BR>please fill out the following form, or contact Oren Manor, USBware's Product Manager:" +
                               "1-877-514-0537 x255, <a class='links' href='mailto:oren@jungo.com'>oren@jungo.com</a>." +
                               "<br><br>" +
                               "<div align='right' class='tint-text'> " +
                                  "<a class='links' href='#' onclick='toptext_korean(); return false;'>Korean version</a>" +
                                "</div>";
                                                              

}

