// JavaScript Document
wnd = null;
function mkw_screenwideframe(url){
	if (wnd){
		wnd.close();
		wnd = null;
	}
	wnd = window.open(url, 'tellep' , "width=700,height=550,scrollbars=1");
}
function submitTellepSearchForm(){
	var form = document.getElementById("tellepSearchForm");
	if(form){
		//form.k.value = form.k.value.replace(" ", "&");
		form.submit();
		return;
	}
	alert("no-form");
}