function NewWin(id,x,y) {
	if((x*1 == NaN) || (x == ""))x = 600;
	if((y*1 == NaN) || (y == ""))y = 400;
	window.open("PopUpWin.php?id="+id, "Langas", "resizable=yes,scrollbars=yes,status=no,titlebar,height="+y+",width="+x+"");
}

function Resize(){
	window.resizeTo(100, 80);

	cWidth = this.document.body.clientWidth;
	sWidth = this.document.body.scrollWidth;
	rWidth = window.screen.availWidth;

	cHeight = this.document.body.clientHeight;
	sHeight = this.document.body.scrollHeight;
	rHeight = window.screen.availHeight;


	if((rHeight - 150) < (sHeight + 40)){
		height = rHeight - 150;
	}else{
		height = sHeight + 40;		
	}

	if(height < sHeight)sWidth+=(sHeight/height)*60		//Tik Tekstui

	if((rWidth - 20) < (sWidth + 40)){
		width = rWidth - 20;
		height += 20;
	}else{
		width = sWidth + 40;
	}

	window.resizeTo(width, (height+30));
//#v5.0217g
}
