﻿$(document).ready(function(){ 
    // 
 	var arabicPath='/sites/en/'+  window.location.pathname.split( '/' )[1]; 	
	$("a#linkToEnglish").attr('href',arabicPath);
	
	//get the background header dynamically 
	 var bgPath='url(/'+ window.location.pathname.split('/')[1]+'/PublishingImages/header_bg.jpg) no-repeat center';
     $('td#Headerbg').css('background',bgPath); 
     
     //get the background about dynamically 
	 var aboutbgPath='url(/'+ window.location.pathname.split("/")[1]+'/PublishingImages/about_center_image.gif) no-repeat left 50%;';
	 $("td#tdMainAbout").css('background', aboutbgPath);

 
});

   		
// add to favorite
function AddToFavorite() {
    var url = window.document.URL;
    var title = window.document.title;

    if (window.sidebar) {
        // Mozilla Firefox Bookmark         
        window.sidebar.addPanel(title, url, "");
    }
    else if (window.opera && window.print) {
        alert('لاضافة الصفحة إلى المفضلة (Ctrl +D) اضغط على');
    }
    else if (window.external) { // IE Favorite
        if (window.ActiveXObject) {
            //ie
            window.external.AddFavorite(url, title);
        } else {
            //chrome
            alert('لاضافة الصفحة إلى المفضلة (Ctrl +D) اضغط على');
        }
    }
    else { //safri
        alert('لاضافة الصفحة إلى المفضلة (Ctrl +D) اضغط على');
    }
}

// send to friend
function SendToFriend() {
    window.open("/_layouts/jazan/sendtofriends.aspx",'_blank',"height=220,width=400,status=no,toolbar=no,menubar=no,location=no");
}

// print page
function PrintPage() {
    if (document.getElementById != null) {
        var html = '<html dir="rtl">\n<head>';

        if (document.getElementsByTagName != null) {
            var headTags = document.getElementsByTagName('head');
            if (headTags.length > 0)
                html += headTags[0].innerHTML;
        }

        html += '\n</head>\n<body style="background-color:#ffffff;background-image:none;">\n';
        html += '\n<table border="0" class="PrintTable" align="center" style="width: 600px;">';
        html += '<tr><td><img src="/images/jazan/jazan_logo.png" /></td></tr><tr><td style="width:100%;text-align: right;">\n';

        var printReadyElem = document.getElementById("printContent");

        if (printReadyElem != null) {
            html += printReadyElem.innerHTML;
        }
        html += '\n</td></tr><tr><td><hr /></td></tr>';
        html += '<tr><td class="PrintCopyRight">جميع الحقوق محفوظة '+ (new Date()).getFullYear() +' &copy بوابة جامعة جازان </td></tr></table>';
        html += '\n</body>\n</html>';

        var printWin = window.open('', 'printxt','status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
        printWin.document.open();
        printWin.document.write(html);
        printWin.document.close();
        printWin.print();
    }
}

function DeleteConfirm() {
    return confirm('هل تريد حذف هذا العنصر؟');
}









