function selectText(){
document.theForm.theText.focus();
document.theForm.theText.select();
}

function okno(url) {
  window.open(url,'okno','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=3,height=3,screenX=3,screenY=3,top=1,left=1')
}

function win(url, width, height) {
	width1=width/2;
	height1=height/2;
	x=screen.availWidth/2-width1;
	y=screen.availHeight/2-height1;
    var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes, menubar=no, left='+x+', top='+y );
	Win.resizeTo(width, height);
	Win.focus();
};
