function toggle(what){

 if(document.getElementById(what).style.display == "none"){

   document.getElementById(what).style.display = "block";

 }else{

   document.getElementById(what).style.display = "none";

 }

}

function FirFoxdisplay(subNum){
    var subName = document.getElementById(subNum);
     if (subName.style.display=="none")
	 {
			 subName.style.display="block";
			 subName.focus();

	 }
	 else
	 {
			 subName.style.display="none";
			 subName.unfocus();
	 }
}

function openWindow(url)
{
    var w = window.open (url, "HaykalTanzemy", "height=600,width=800,scrollbars");
}
function display(subNum){
     if (subNum.style.display=="none")
	 {
			 subNum.style.display=""
	 }
	 else
	 {
			 subNum.style.display="none"
	 }
}
function GoToArabic()
    {
        var check = document.getElementById("ctl00_CheckExist").value;
        var mylink = window.location.href.replace("english","arabic");
        mylink = mylink.replace("Lang=En","Lang=Ar");
        if(check =='True')
             window.location.href = mylink;
        else
            window.location.href = check;
    }
//------------------------------------------print

 function printPartOfPage()
    {
    var DateNow = document.getElementById("ctl00_DateNow").value;
     var printContent = document.getElementById('myTable').rows[0].cells;
     var windowUrl = 'about:blank';
     var uniqueName = new Date();
     var windowName = 'Print' + uniqueName.getTime();
     var printWindow = window.open(windowUrl, windowName, 'left=50,top=50,width=600,height=500,resizable=1,scrollbars=1');

     printWindow.document.write("<h3 align='left'><img src='../images/logosa.gif' width='50px' height='50px'/>&nbsp;&nbsp; Sadat Academy for Management Sciences <h3/><br/>")
     printWindow.document.write("<a href=\"javascript:window.close();\">Close this window</a><hr align='center'>")
     printWindow.document.write(printContent[0].innerHTML.replace("OVERFLOW: auto","OVERFLOW: none"));
     printWindow.document.write("This content is printed from the Sadat Academy for Management Sciences and address on the next page<br/>")
     printWindow.document.write(window.location.href + "<br>")
     printWindow.document.write(DateNow)
     printWindow.document.close();
     printWindow.focus();
     printWindow.print();
     //printWindow.close();
    }

