var popUpWin=0;
function popUpWindow(URLStr,p)
{
  var width=550;
  var height=600;
  if (p==1) height=300; 
  var left=(screen.width-width)/2;
  var top=(screen.height-height)/2;
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = window.open(URLStr,"","height="+height+",width="+width+",top="+top+",left="+left+",location=no,menubar=no,resizable=no,scrollbars=yes,status=no,titlebar=no,toolbar=no,directories=no");
}

function checkLength(field,maxLetters) {
	var len = field.value.length;
	if (len > maxLetters) {
		field.value = field.value.substr(0,maxLetters);
		alert('You have reached the maximum character limit of ' + maxLetters + '.');
	}
}

function ViewAgreement(p)
{
	var f="";
	if (p==0) 
	f="regulament-angajator.php";
	else
	f="regulament-angajat.php";
	var openedWindow = window.open( f, "Agreement", 'width=580,height=420,resizable=yes,scrollbars=no,menubar=no,align=center');
	
	openedWindow.focus();
}
