// JavaScript Document
function check(form){
	var on1_1=form.on1_1.value;
		var on1_3=form.on1_3.value;
	var on1_4=form.on1_4.value;
	var on1_5=form.on1_5.value;
	var on1_6=form.on1_6.value;

	var text1='        Invalid e-mail address!\nPlease enter correct e-mail address.';
	var text3='Please select Phone model.';
	var text4='Please select Country.';
	var text5='Please select Currency.';
	var text6='Please select Cable type.';
	var text7='Cable Pack is not available for this country!\nWe suggest you to obtain a compatible data cable from a local seller,\nThen you can still use our service after obtained your cable.';
	var text8='You can not use this service with this type of data cable!\nYou may obtain a compatible cable alternatively.';
	var text9='You can not use this service if you do not have a compatible data cable!\nYou may obtain a compatible cable alternatively.';
	var text10='Please select your answer for compability question.';
	var text11='Please test Data Cable and Phone compability before ordering unlock service.';


	if (on1_1 == 'none' || on1_1 == ''){
	alert(text3);
	form.on1_1.focus();
	return false;}

	else if (on1_3 == 'none'){
	alert(text5);
	form.on1_3.focus();
	return false;}

	else if (on1_4 == 'none'){
	alert(text6);
	form.on1_4.focus();
	return false;}  

	else if (on1_4 == 'ct3'){
	alert(text8);
	form.on1_4.focus();
	return false;}    

	else if (on1_4 == 'ct4'){
	alert(text9);
	form.on1_4.focus();
	return false;}
	    	  	
	else if (on1_5 == 'none'){
	alert(text10);
	form.on1_5.focus();
	return false;}  

	else if (on1_5 == 'No'){
	alert(text11);
	form.on1_5.focus();
	return false;}    

 else if (on1_6 == '' || on1_6.length < 5 || on1_6.indexOf('@') == -1){
	alert(text1);
	form.on1_6.focus();
	return false;}
	else return true;}
	
function sslverify(){
var popurl="https://seal.godaddy.com/verifySeal?sealID=14421789540721dd9d8127118f254619c17fba03160883236060964768"
winpops=window.open(popurl,"","width=600,height=500,scrollbars,resizable,")
}