function popup(url, target)
{
	w = 850;
	h = 600;
	l = 800/8;
	t = 600/10;
	widthHeight = "width="+w+",height="+h+",left="+l+",top="+t+",menubar=no,resizable=no,scrollbars=no,status=yes,toolbar=no,location=no";
	window.open(url,target,widthHeight);
	return true
}

function openchat(oForm)
{
	if (oForm.pseudonimi.value.length < 5)
	{
		alert ('Pseudonimi duhet tė pėrmbaj mė shumė se 4 shkronja!');
	}
	else if (oForm.rrjeti.value.length == 0)
	{
		alert ('Ju lutemi zgjedheni rrjetin nga menyja!');
	}
	else
	{
            gjer = 820;
            gjat = 475;
		s ='IRC/?nick=' + oForm.pseudonimi.value + '&gjeresia=' + gjer + '&gjatesia=' + gjat + '&referuesi=' + oForm.refer.value + '&serveri=' + oForm.rrjeti.value ;
		popup(s,'chatroom');
	}
	return false;
}
