<!-- HIDING FROM OTHER BROWSERS

formok = false;
var fulldata;

function sendmydata()
{
if(!noflash)
{
	nm = document.dataform.S_name.value;
	eml = document.dataform.S_email.value;
	ph = document.dataform.S_phone.value;
	ds = document.dataform.Description.value;
	cn = document.dataform.S_country.options[document.dataform.S_country.selectedIndex].value;
	mm = document.dataform.Month_of_travel.options[document.dataform.Month_of_travel.selectedIndex].value;
	yy = document.dataform.Year_of_travel.options[document.dataform.Year_of_travel.selectedIndex].value;
	dr = document.dataform.Duration.options[document.dataform.Duration.selectedIndex].value;
	ad = document.dataform.adults.options[document.dataform.adults.selectedIndex].value;
	ch = document.dataform.Children.options[document.dataform.Children.selectedIndex].value;
	rr = document.referrer;
	su = document.location.href;

	fulldata = "name="+nm+"&email="+eml+"&phone="+ph+"&Description="+ds+"&country="+cn+"&monthoftravel="+mm+"&yearoftravel="+yy+"&Duration="+dr+"&adults="+ad+"&children="+ch+"&selfurl="+su+"&refferer="+rr;


	if(formok)
	{
		checkfrm();
	}
}else{
	submitform();
}
}


function checkfrm()
{
if(formok && !noflash)
{
	//alert('d');
var flasho = '<OBJECT CLASSID="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" CODEBASE="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ID="myqform" WIDTH="10" HEIGHT="10" ALIGN="middle" NAME="myqform"><PARAM NAME="allowScriptAccess" VALUE="sameDomain"><PARAM NAME="movie" VALUE="/formnew2.swf"><PARAM NAME="quality" VALUE="high"><PARAM NAME="bgcolor" VALUE="#ffffff"><PARAM NAME="FLASHVARS" VALUE="'+fulldata+'"><EMBED SRC="/formnew2.swf" WIDTH="10" HEIGHT="10" NAME="myqform" FLASHVARS="'+fulldata+'" ALIGN="middle" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></OBJECT>';
if(document.all)
	{
document.all['flashdiv'].innerHTML=flasho;
	}else if(document.layer)
	{
		document['flashdiv'].innerHTML=flasho;
	}else{
		document.getElementById('flashdiv').innerHTML=flasho;
	}
}else{
	submitform();
}
}


expires = new Date();
expires.setTime (expires.getTime() + 24 * 60 * 60 * 150 * 1000);
function set(){

if(document.dataform.Month_of_travel.selectedIndex==0)
{
	alert("Please select your month of travel");
	document.dataform.Month_of_travel.focus();
	return false;
}

if(document.dataform.Year_of_travel.selectedIndex==0)
{
	alert("Please select your year of travel");
	document.dataform.Year_of_travel.focus();
	return false;
}

if(document.dataform.Duration.selectedIndex == 0)
{
	alert("Please select Duration of Travel.");
	document.dataform.Duration.focus();
	return (false);
}

if(document.dataform.adults.selectedIndex == 0)
{
	alert("Please select No. of Adults.");
	document.dataform.adults.focus();
	return (false);
}

if(document.dataform.Children.selectedIndex == 0)
{
	alert("Please select No. of Children.");
	document.dataform.Children.focus();
	return (false);
}

if (document.dataform.Description.value == "") 
{
    alert ("Please enter your travel Requirements.");
	document.dataform.Description.focus();
    return (false);
}

if (document.dataform.S_name.value == "") 
{
    alert ("Please fill Your Name.");
	document.dataform.S_name.focus();
    return (false);
}

if (document.dataform.S_email.value == "") 
{
    alert ("Please fill Your E-mail Id.");
	document.dataform.S_email.focus();
    return (false);
}

if(document.dataform.S_email.value.indexOf(" ") >= 0)
{
	alert("Please enter your email-id without any white space character.");
	document.dataform.S_email.focus();
	return (false);
}
if ( (document.dataform.S_email.value.indexOf("@") == -1) || (document.dataform.S_email.value.indexOf(".") == -1) )
{
	alert("Please enter a valid email-id"); 
	document.dataform.S_email.focus();
	return (false);
}


BeforeAtRate = document.dataform.S_email.value.substring(0,document.dataform.S_email.value.indexOf("@"));
AfterAtRate = document.dataform.S_email.value.substring(document.dataform.S_email.value.indexOf("@")+1,document.dataform.S_email.value.length);

if (AfterAtRate.indexOf(".") == -1)
{
	alert("Please enter a valid email-id"); 
	document.dataform.S_email.focus();
	return (false);
}

middle = AfterAtRate.substring(0, AfterAtRate.indexOf("."))
last = AfterAtRate.substring(AfterAtRate.indexOf(".") + 1,AfterAtRate.length)

if (BeforeAtRate.length == 0 || middle.length == 0 || last.length == 0)
{
	alert("Please enter a valid email-id"); 
	document.dataform.S_email.focus();
	return (false);
}

if (document.dataform.S_phone.value == "") 
{
    alert ("Please fill Your Phone no.");
	document.dataform.S_phone.focus();
    return (false);
}

if(document.dataform.S_country.selectedIndex == 0)
{
	alert("Please select your Country.");
	document.dataform.S_country.focus();
	return (false);
}

/* Referrer and selfurl


if (document.referrer&&document.referrer!="")
        {
                document.dataform.referer.value = document.referrer;
        }
        document.dataform.self_url.value = document.location.href;
*/


newCookie = document.dataform.S_name.value;
newCookie +="|"+document.dataform.S_email.value;
newCookie +="|";
setCookie("newImeshID",newCookie);
formok = true;
sendmydata();
return true;
}

function get(){
if( (cookie = getCookie("newImeshID")) > ""){
	Values = cookie.split("|");
	if (Values.length >= 0){
		if (document.dataform.S_name.value.length == 0) document.dataform.S_name.value = Values[0];
		if (document.dataform.S_email.value.length == 0)    document.dataform.S_email.value = Values[1];
	}
}
return true;
}
function setCookie(name, value){
if (value.length > 0)
 document.cookie = name + "=" + escape(value)+ ";"+"expires=" + expires.toGMTString()+";"+"path=/;"
}
function getCookie(Name) {
          var search = Name + "="
          if (document.cookie.length > 0) { // if there are any cookies
                    offset = document.cookie.indexOf(search) 
                    if (offset != -1) { // if cookie exists 
                              offset += search.length 
                              // set index of beginning of value
                              end = document.cookie.indexOf(";", offset) 
                              // set index of end of cookie value
                              if (end == -1) end = document.cookie.length
                              return unescape(document.cookie.substring(offset, end))
                    } 
          }
return "";
}

//Getting parameter name from url starts
var is_input = document.URL.indexOf('?');
var tour_value = '';
if (is_input != -1)
{
	addr_str = document.URL.substring(is_input+1, document.URL.length);
	strarr = addr_str.split("&");
	var param_name = unescape((strarr[0].split("="))[0]);
	if(param_name == "tour")
	{
		tour_value = unescape((strarr[0].split("="))[1]);
		tour_value = tour_value.replace(/\+/g," ");
	}
}//Getting parameter name from url ends


//Translater script below
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
condition = !(( (browserName.indexOf("Explorer") >=0 ) && (browserVer < 4) ) ||  ((browserName.indexOf("Netscape") >=0 ) && (browserVer < 2) ) ) ;
if (condition == true  )
    CanAnimate = true;
else
    CanAnimate = false;

function translate()
{
	var loc = document.location.toString();
	loc = loc.substring(7,loc.length);
	var idx;
	idx = document.trans.langpair.selectedIndex;
	if (idx<=0) {
		alert("Please select a language.");
		return false;
	}
	else {
		window.open('http://translate.google.com/translate_c?langpair=' + document.trans.langpair.options[idx].value + "&u=" + document.location,"new_trans");
		return false;
	}
}

function openchild_nl(thisurl) 
{
	var windowTop;
	var windowLeft;
	windowTop=(screen.height*(20/100))*0.7;
	windowLeft=screen.width*(19/100);

	var email_val = document.theForm.email.value;
	var from_site_val = document.theForm.from_site.value;
	var is_window_val = document.theForm.is_window.value;
	var org_referer = document.location;
	var thisurl_string = thisurl + "?email=" + email_val + "&from_site=" + from_site_val + "&is_window=" + is_window_val + "&org_referer=" + org_referer;

	if ( CanAnimate ) {
			msgWindow=window.open( '' ,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,menubar=no,resizable=yes,width=570,height=260,top='+windowTop+',left='+windowLeft);
			msgWindow.focus();
			msgWindow.location.href = thisurl_string;
	}
	else {
			msgWindow=window.open( thisurl_string,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,menubar=no,resizable=yes,width=570,height=260,top='+windowTop+',left='+windowLeft);
	}
}



function validate_nl(theForm)
{
	if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(theForm.email.value)))
	{
		alert("Invalid Email ID. Kindly enter the correct ID.");
		theForm.email.focus();
		return (false);
	}
}


function getblank_nl(this1)  {
	this1.value = "";
    return true;	
}

function mail(){
	document.location="mailto:webmaster@rajasthan-travel-tours.com?subject="+document.location;
}



function validateit(theForm)
{
	if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(theForm.email.value)))
	{
		alert("Invalid Email ID. Kindly enter the correct ID.");
		theForm.email.focus();
		return (false);
	}
}


function checkData ()
{
	if (document.form1.choice[0].checked) {
		document.form1.action = "http://www.indiamart.com/cgi/AT-apparelssearch.cgi";
	}
	else {
	    document.form1.action = "http://www.indiamart.com/cgi/AT-india2search.cgi";
	}
	if (document.form1.search.value.length < 3){
	    alert("Enter at least three characters for search."); 
	    document.form1.search.focus();
	    return false;
	}
return true;

}


function checkData1 ()
{
	if (document.form2.search.value.length < 3){
	    alert("Enter at least three characters for search."); 
	    document.form2.search.focus();
	    return false;
	}
	else{
		return true;
	}

}

function getblank(this1)  {
	if (this1.value = "Your e-mail here") {
		this1.value = "";
	}
    return true;	
}
function convert()

{
var loc = document.location.toString();
loc = loc.substring(7,loc.length);
var idx;
idx = document.trans.langpair.selectedIndex;
if (idx<=0) 
{
alert("Please select a language.");
return false;
}
else{
window.open('http://translate.google.com/translate_c?langpair=' + document.trans.langpair.options[idx].value + "&u=" + document.location,"new_trans");
return false;
}
}

// STOP HIDING FROM OTHER BROWSERS -->