/*Resize Image*/
function ReSize(i)
{ 
var x,y,diffPersentage,Feedimg;
Feedimg = document.GetElementByID("FeedImage");
x = Feedimg.width;
y = Feedimg.height;
diffPersentage = 175/x;
Feedimg.height = diffPersentage*y;
}/*NEW*/function resizing(myimg)
{var imageobj,x,y,diffPersentage;if (myimg.width > 300){myimg.style.height = "auto"; myimg.style.width= "300px";}else{myimg.style.height = "auto";myimg.style.width = myimg.width;}}
/*NEW*//*Resize Image*/
/*Pop ub */
function popup(imgurl,headline)
{
var mywindow;
mywindow = window.open("","mywindow","resizable=0, location=0,status=1,scrollbars=1,width=400,height=400,menubar=0,toolbar=0");
mywindow.document.write('<img src="' + imgurl + '"/>');
mywindow.moveTo(200,200);
mywindow=null;
}/*Pop ub*/
/*Cookies*/
function getCookies()
{
var allcookies = document.cookie;
var pos = allcookies.indexOf("testvalue1");
if (pos == -1)
{
window.open('/news/save_popup.htm','javascript_1','plain, height=450,width=550');
}
}
function getUrl()
{
window.location="/News/print/print.htm?document="+window.location.pathname;
}
function getUrlMail()
{
window.open('http://www.masrawy.com/News/mail/SendMail.aspx?document='+document.location,'_blank');
}
/*Cookies*/
function fnTrapKP(btnName)
                               {var btn = document.getElementById(btnName);
                                 if (event.keyCode == 13)
                                    {
                                       event.returnValue=false;
		       event.cancelBubble = true;
		       btn.click();
		     }
		}

