// JavaScript Document
function iFrameHeight() {
		top.window.scrollTo(0,0);
		var h = 0;
		if(document.getElementById && !(document.all)) {
			h = document.getElementById('ifrm').contentDocument.height;
			document.getElementById('ifrm').style.height = h + 'px';
		} else if(document.all) {
			h = document.frames('ifrm').document.body.scrollHeight;
			document.all.ifrm.style.height = h + 'px';
		}
	}
	
	function checkDomain() {
		frm = document.checkdomin;

		// Mario Vital workaround firefox

		//frm.domain.value = '99';
		
		if (checkdomin.domain.value == '') {
			alert("Por favor indique o nome do domínio.");
			checkdomin.domain.focus();
		    return false
		}
		
		checkdomin.action = "comprar/domin.php?dom=" + checkdomin.domain.value + "&ext=" + checkdomin.tld_extension.value;
		//frm.submit();
		//frm.action = "http://clientes.mundodigital.eu/order/orderwiz.php?domain=" + frm.domain.value + "&tld_extension=" + frm.tld_extension.value + "&submit_domain=register&aid=&c_code=&v=1&aid=&c_code=&submit=lookup+domain+%3E%3E";
		checkdomin.submit();
		
	}