var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function ShowHide(oObj)
{
    if(oObj.style.display == 'none')
    {
        oObj.style.display = '';
    }
    else
    {
        oObj.style.display = 'none';
    }
}

	function checkfields() {
		missinginfo = "";
		if (document.form.name.value == "") {
		missinginfo += "\n الاسم الأول";
		}
		if (document.form.lastname.value == "") {
		missinginfo += "\n الكنية";
		}
		if (document.form.email.value == "") {
		missinginfo += "\n البريد الالكتروني";
		}
		if (missinginfo != "") {
		missinginfo ="_____________________________\n" +
		"الرجاء إدخال الحقول التالية\n" +
		missinginfo + "\n_____________________________" +
		"\n من ثم أعد الإرسال";
		alert(missinginfo);
		return false;
		}
		else return true;
		}

