// JavaScript Document
function openNewWindow(URLtoOpen, windowName, windowFeatures){
	newWindow=window.open(URLtoOpen, "_blank", windowFeatures);
	//windowFeatures = "height=" + Y+",width=" + X + "toolbar=no,scrollbars=no,resizable=no";
}
function clear_input(){
	if(document.cauta_domeniu.domeniu.value=="domeniul_dorit.ro"){
		//alert("este");
		document.cauta_domeniu.domeniu.value="";
	}
}

function S(val){
	document.forms[val].submit();
}

function fix_obj(){
	theObjects = document.getElementsByTagName("object");
	for (var i = 0; i < theObjects.length; i++) {
		theObjects[i].outerHTML = theObjects[i].outerHTML;
	}
}

function change_currency(moneda){
	myurl=window.location.href;
	document.cookie="NS_LINK=" +escape(myurl);
	window.open("php/change_currency.php?moneda="+moneda, "_self");
	//alert(myurl);
}

function change_language(lang){
	myurl=window.location.href;
	document.cookie="NS_LINK=" +escape(myurl);
	window.open("php/change_language.php?lang="+lang, "_self");
	//alert(myurl);
}
