document.write('<style type="text/css" media="screen">	#visahqwebwidgetajaxloadresult p {text-align:center!important;} #visahqwebwidget {width:208px; min-height:238px; _height:238px; margin:0px; padding:0px; font-family:Tahoma; font-size:12px; line-height:14px!important; color:#000; text-transform:none!important; letter-spacing:normal!important;}		.visahqwebwidgetcaption {min-height:22px; _height:22px; line-height:22px; margin-bottom:1px;	}	.travelvisarequirements {width:100%; text-align:center; background:#0f3496; font-weight:bold; color:#fff; border-color:#546EB4 #091E58 #091E58 #546EB4; border-style:solid; border-width:1px;}	.poweredbyvisahq {		position:absolute;		font-size:10px;		bottom:5px;		right:10px;	}	.poweredbyvisahq a{		color:#0f3496!important;	}	.visahqwebwidgetmain {width:100%; min-height:125px; _height:125px; background:#8aa6de; border:1px solid #0f3496;}	.visahqwebwidgetmain select {		width:170px;display:block;		margin:0px;padding:0px;	}	.visahqwebwidgetmain .form {		margin:0px;padding:0px;		margin-left:18px;		_margin-left:12px;		text-align:left;	}	.visahqwebwidgetmain label {		font-weight:bold!important;		display:block!important;margin:0px!important;float:none!important;		margin-top:5px!important;		padding-bottom:2px!important;	}	.visahqwebwidgetresult {width:100%; height:85px; margin-top:1px; position:relative; }	.visahqwebwidgetresultblue {height:85px; background:#8aa6de;	border:1px solid #0f3496;	text-align:center;}	.visahqwebwidgetresultgreen {height:85px; background:#008000!important;		border:1px solid #9fd164;		text-align:center;		color:#fff;	}	.visahqwebwidgetresultred {height:85px; background:#c90202!important;		border:1px solid #fe8787;		text-align:center;		color:#fff;	}	#visahqwebwidgetbutton {		margin:10px 25px;		background:#f5ab1e;		height:18px;		width:145px;		border-top:2px solid #e38305;		border-left:2px solid #e38305;		border-bottom:2px solid #a14b01;		border-right:2px solid #a14b01;		color:#0f3496;		font-weight:bold;		line-height:18px;		padding:0px 5px;		text-align:center;		cursor:pointer;	}	.visahqwebwidgetresultgreen p{		margin:5px 0px;		padding:0px;		font-weight:bold;	}	.visahqwebwidgetresultred p{		margin:5px 0px;		padding:0px;		font-weight:bold;	}	#visahqwebwidgetresultnr {		border:2px solid #fff;		font-weight:bold;		font-size:14px;		padding:0px 4px;		background:#77bb22;	}	#visahqwebwidgetresultr {		border:2px solid #fff;		font-weight:bold;		font-size:14px;		padding:0px 4px;		background:#ee0101;	}	.visahqwebwidgetresultgreen a{		color:#fff;		line-height:18px;	}	.visahqwebwidgetresultred a{		color:#fff;		line-height:18px;	}	.visahqwebwidgetajaxloaderclass {		margin-top:24px;	}	#visahqwebwidgetrequirementsid {		line-height:24px;	}</style><div id="visahqwebwidget">	<div class="visahqwebwidgetcaption travelvisarequirements" id="travelvisarequirementsid">		Travel Visa Requirements	</div>		<div class="visahqwebwidgetmain" id="visahqwebwidgetmainid">		<div class="form">			<label for="visahqwebwidgetnationality">Citizenship:</label>			<select id="visahqwebwidgetnationality" name="nationality">			  <option value="0">- Select Citizenship -</option></select>		</div>		<div class="form">			<label for="visahqwebwidgetdestination">Destination country:</label>			<select id="visahqwebwidgetdestination" name="destination"><option value="0">- Select Destination -</option></select>			<input type="hidden" id="visahqwebwidgetresidency" value=""><input type="hidden" id="visahqwebwidgetpluginname" value=""><input type="hidden" id="visahqwebwidgetaffiliateidvalue" value=""></div>		<div id="visahqwebwidgetbutton" onclick="visahqWidgetObj.ajaxLoader(true)">Check Requirements</div>	</div>	<div class="visahqwebwidgetresult visahqwebwidgetresultblue" id="visahqwebwidgetajaxloadresult"><div id="visahqwebwidgetajaxloadcontent" style="height:85px;"><p style="margin:10px;text-align:center;">Select your citizenship,<br>country of destination and<br>click "Check Requirements"</p>		<span class="poweredbyvisahq" id="poweredbyvisahq">Get this tool free at <a href="http://www.visahq.com/get_widget.php?type=js" title="VisaHQ.com" id="visahqwebwidgetaffiliateid">VisaHQ.com</a></span>		<img src="https://www.visahq.com/widget_6.php?ws_key=1&type=java" width="1px" height="1px"><div id="visahqwebwidgetcountrieslist"></div></div></div></div> <script type="text/javascript"> 		visahqWidgetObj = new Object();	var colorReg = /\#[a-z0-9]{6}/i;	var countryReg = /[a-z]{2}/i;	visahqWidgetObj.ajaxLoader = function(isclick) {		var citizen = document.getElementById("visahqwebwidgetnationality").value; 		var dest = document.getElementById("visahqwebwidgetdestination").value; 				if((citizen == 0)||(citizen == 1000))	{ 			alert("Please, select nationality");				return; 				}		if((dest == 0)||(dest == 1000))	{ 			alert("Please, select country of destination"); 			return;		}		var headLocResult = document.getElementById("visahqwebwidgetajaxloadresult"); 		var headLocContent = document.getElementById("visahqwebwidgetajaxloadcontent"); 		headLocResult.className = "visahqwebwidgetresult visahqwebwidgetresultblue"; 		headLocContent.innerHTML="";			var imgObj = document.createElement("img"); 		imgObj.setAttribute("src", "https://www.visahq.com/images/ajax-loader2.gif");		 				imgObj.setAttribute("class", "visahqwebwidgetajaxloaderclass");			headLocContent.appendChild(imgObj);		visahqWidgetObj.isClick = isclick;		setTimeout(visahqWidgetObj.resultQuery, 2000); 		};			visahqWidgetObj.resultQuery = function() {		var headLocContent = document.getElementById("visahqwebwidgetajaxloadcontent");		headLocContent.innerHTML="";	 				var citizen = document.getElementById("visahqwebwidgetnationality").value;		var dest = document.getElementById("visahqwebwidgetdestination").value;		var resid = document.getElementById("visahqwebwidgetresidency").value;		var pln = document.getElementById("visahqwebwidgetpluginname").value;  		var affiliate = document.getElementById("visahqwebwidgetaffiliateidvalue").value;		var isclick = (visahqWidgetObj.isClick == true) ? 1 : 0;		var scriptObj = document.createElement("script");		 				scriptObj.setAttribute("type", "text/javascript");	 				scriptObj.setAttribute("src", "http://www.visahq.com/widget_6.php?citizen=" + citizen + "&dest=" + dest + "&resid=" + resid + "&view=v" + "&type=java" + "&aff=" + affiliate + "&pln=" + pln + "&is_click=" + isclick); 				headLocContent.appendChild(scriptObj);	};		visahqWidgetObj.getCountries = function() {		var headLocContent = document.getElementById("visahqwebwidgetcountrieslist");		var scriptObj = document.createElement("script");		 				scriptObj.setAttribute("type", "text/javascript");	 				scriptObj.setAttribute("src", "http://www.visahq.com/widget_countries.php?type=js&view=v"); 			headLocContent.appendChild(scriptObj);	};		visahqWidgetObj.setCountries = function() {		if(visahqWidgetObj.countries) {			var citizen = "0"; var dest = "0";			if((typeof(visahq_widget_nationality_country) == "string") && countryReg.test(visahq_widget_nationality_country))				citizen = visahq_widget_nationality_country;			else 				visahq_widget_nationality_country = "0";			if((typeof(visahq_widget_destination_country) == "string") && countryReg.test(visahq_widget_destination_country))				dest = visahq_widget_destination_country;			else				visahq_widget_destination_country = "0";			var ctzSelect = document.getElementById("visahqwebwidgetnationality");			var destSelect = document.getElementById("visahqwebwidgetdestination");			for(var code in visahqWidgetObj.countries) {				var optc = document.createElement("option");				var optd = document.createElement("option");				optc.appendChild(document.createTextNode(visahqWidgetObj.countries[code]));				optd.appendChild(document.createTextNode(visahqWidgetObj.countries[code]));				optc.setAttribute("value", code);				optd.setAttribute("value", code);				if(code == citizen) optc.selected = true;				if(code == dest) optd.selected = true;				ctzSelect.appendChild(optc);				destSelect.appendChild(optd);			}		}		visahqWidgetObj.setWidgetOptions();		visahqWidgetObj.setGetThisTool();	}; 	visahqWidgetObj.setGetThisTool = function() {		if(typeof(visahq_widget_plugin_get_widget) == "string" && typeof(visahq_widget_plugin_name) == "string" && visahq_widget_plugin_get_widget == 1 && document.getElementById("poweredbyvisahq")) {			document.getElementById("poweredbyvisahq").innerHTML = \'Powered by <a href="http://\' + visahq_widget_plugin_name + \'.visaheadquarters.com/get_widget.php?type=js" title="VisaHQ.com" id="visahqwebwidgetaffiliateid">VisaHQ.com</a>\';		}				if((typeof(visahq_widget_get_this_tool) == "string") && visahq_widget_get_this_tool == "false" && document.getElementById("poweredbyvisahq")) {			document.getElementById("poweredbyvisahq").style.display = "none";		}	};		visahqWidgetObj.setWidgetOptions = function() {		if((typeof(visahq_widget_stretch_width) == "string") && (visahq_widget_stretch_width == "true")) {			document.getElementById("visahqwebwidget").style.width="100%";		}				if((typeof(visahq_widget_border_width) != "undefined") && (parseInt(visahq_widget_border_width) > 1)) {			visahq_widget_border_width = parseInt(visahq_widget_border_width); 			document.getElementById("travelvisarequirementsid").style.borderWidth=visahq_widget_border_width + "px"; 					document.getElementById("visahqwebwidgetmainid").style.borderWidth=visahq_widget_border_width + "px"; 			document.getElementById("visahqwebwidgetajaxloadresult").style.borderWidth=visahq_widget_border_width + "px";		}				if((typeof(visahq_widget_residency_country) == "string") && countryReg.test(visahq_widget_residency_country)) {			document.getElementById("visahqwebwidgetresidency").value = visahq_widget_residency_country; 			}				if(typeof(visahq_widget_affiliate_id) == "string") {			document.getElementById("visahqwebwidgetaffiliateidvalue").value = visahq_widget_affiliate_id;			document.getElementById("visahqwebwidgetaffiliateid").href = "http://www.visahq.com/get_widget.php?type=js&a_aid="+visahq_widget_affiliate_id; 			}				if(typeof(visahq_widget_plugin_name) == "string") {			document.getElementById("visahqwebwidgetpluginname").value = visahq_widget_plugin_name; 			}				if((typeof(visahq_widget_text_color) == "string") && colorReg.test(visahq_widget_text_color)) {			document.getElementById("visahqwebwidget").style.color = visahq_widget_text_color;		}				if((typeof(visahq_widget_border_color) == "string") && colorReg.test(visahq_widget_border_color)) {			document.getElementById("visahqwebwidgetmainid").style.borderColor = visahq_widget_border_color;				document.getElementById("visahqwebwidgetajaxloadresult").style.borderColor = visahq_widget_border_color;		}				if((typeof(visahq_widget_background_color) == "string") && colorReg.test(visahq_widget_background_color)) {			document.getElementById("visahqwebwidgetmainid").style.backgroundColor = visahq_widget_background_color;	 			document.getElementById("visahqwebwidgetajaxloadresult").style.backgroundColor = visahq_widget_background_color; 			}				if((typeof(visahq_widget_title_text_color) == "string") && colorReg.test(visahq_widget_title_text_color)) {			document.getElementById("travelvisarequirementsid").style.color = visahq_widget_title_text_color; 		}				if((typeof(visahq_widget_title_background_color) == "string") && colorReg.test(visahq_widget_title_background_color)) {			document.getElementById("travelvisarequirementsid").style.borderColor = visahq_widget_title_background_color;			document.getElementById("travelvisarequirementsid").style.backgroundColor = visahq_widget_title_background_color;		}				if((visahq_widget_nationality_country != 0)&&(visahq_widget_nationality_country != 1000)&&(visahq_widget_destination_country != 0)&&(visahq_widget_destination_country != 1000)) {			visahqWidgetObj.ajaxLoader(false); 			}	};			visahqWidgetObj.getCountries();</script>');