// JavaScript Document

function onloadkor() {
document.getElementById("loading").style.display  = "none";
document.getElementById("betoltott").style.display = "block";
}



function openradiowindow(url,wth,hgt) {
	if('full' == wth){
		pwindow = window.open(url);
	} else {
		if (wth) {
			mywidth=wth;
		} else {
			mywidth=600;
		}

		if (hgt) {
			myheight=hgt;
		} else {
			myheight=400;
		}

		pwindow = window.open(url,'Name', 'top=150,left=250,resizable=no,width='+mywidth+',height='+myheight+',scrollbars=no,menubar=no');
	}
	pwindow.focus();
}

