function openForm(url, nimi) {
	var handle = window.open(url, nimi, "width=750,height=450,resizable=no,toolbar=no,status=no,location=no,titlebar=no");
	if (!handle.opener) handle.opener = self;
	childHandle = handle;
	handle.focus();
	return false;
}

function openResizableForm(url, nimi) {
	var handle = window.open(url, nimi, "width=750,height=450,resizable=yes,toolbar=no,status=no,location=no,titlebar=no");
	if (!handle.opener) handle.opener = self;
	childHandle = handle;
	handle.focus();
	return false;
}

function GoToSub() {

	if(document.getElementById) {
		
		var o = document.getElementById("asiakasyhtiot");
		if(o) {	
			if(o.value && o.value != "") {
				var sUrl    = o.value;
				var oWindow = window.open(sUrl, "Taloyhtio");
			}
		}
		
	}
	
}
