// Copyright IBM Corp. 2002, 2008 All Rights Reserved. var asynchContextMenuDebug=-1;var asynchContextMenuMouseOverIndicator="";var portletIdMap=new Object();function asynchContextMenuOnMouseClickHandler(uniqueID, isLTR, urlToMenuContents, menuBorderStyle, menuTableStyle, menuItemStyle, menuItemSelectedStyle, emptyMenuText, loadingImage) { var menuID="contextMenu_" + uniqueID;var menu=getContextMenu(menuID);if (menu == null) { asynchContextMenu_menuCurrentlyLoading=uniqueID;if (loadingImage) { setLoadingImage(loadingImage);}menu=createContextMenu(menuID, isLTR, null, menuBorderStyle, menuTableStyle, emptyMenuText);loadAsynchContextMenu(uniqueID, urlToMenuContents, isLTR, menuItemStyle, menuItemSelectedStyle, '', true);}else { if (asynchContextMenu_menuCurrentlyLoading == uniqueID) { return;}showContextMenu(menuID, document.getElementById(uniqueID));};};var asynchContextMenu_originalMenuImgElementSrc;function setLoadingImage(img) { asynchContextMenu_originalMenuImgElementSrc=document.getElementById(asynchContextMenu_menuCurrentlyLoading + "_img").src;document.getElementById(asynchContextMenu_menuCurrentlyLoading + "_img").src=img;};function clearLoadingImage() { document.getElementById(asynchContextMenu_menuCurrentlyLoading + "_img").src=asynchContextMenu_originalMenuImgElementSrc;};function loadAsynchContextMenu(uniqueID, url, isLTR, menuItemStyle, menuItemSelectedStyle, emptyMenuText, showMenu, onMenuAffordanceShowHandler) { asynchDebug('ENTRY loadAsynchContextMenu p1=' + uniqueID + '; p2=' + url + '; p3=' + isLTR + '; p4=' + isLTR);var menuID="contextMenu_" + uniqueID;var dialogTag=null;var ID=uniqueID + '_DIV';if (document.getElementById(ID) != null) { closeMenu(ID);return;}dialogTag=document.createElement("DIV");dialogTag.style.position="absolute";if (asynchContextMenuDebug < 2) { dialogTag.style.left="0px";dialogTag.style.top="-100px";dialogTag.style.visibility="hidden";}if (asynchContextMenuDebug >= 2 || asynchContextMenuDebug == 999) { dialogTag.style.left="100px";dialogTag.style.top="100px";dialogTag.style.visibility="visible";}dialogTag.id=ID;var styleString='null';if (menuItemStyle != null) { styleString="'" + menuItemStyle + "'";}if (menuItemSelectedStyle != null) { styleString=styleString + ", '" + menuItemSelectedStyle + "'";}else { styleString=styleString + ", null";}dialogTag.innerHTML='';document.body.appendChild(dialogTag);asynchDebug('EXIT createDynamicElements');};function buildAndDisplayMenu(menuID, iframeID, menuItemStyle, menuItemSelectedStyle, showMenu, onMenuAffordanceShowHandler) { asynchDebug('ENTRY buildAndDisplayMenu p1=' + menuID + '; p2=' + iframeID + '; p3=' + showMenu + '; p4=' + onMenuAffordanceShowHandler);var menu=getContextMenu(menuID);clearLoadingImage();asynchContextMenu_menuCurrentlyLoading=null;if (menu == null) { return false;}index=iframeID.indexOf("_IFRAME");var divID=iframeID.substring(0, index);index2=divID.indexOf("_DIV");var uniqueID=divID.substring(0, index2);asynchDebug('divID=' + divID);asynchDebug('uniqueID=' + uniqueID);var frame, c=-1, done=false;while ((c + 1) < window.frames.length && !done) { c=c+1;try { done=(window.frames[c].name == iframeID);}catch (e) { };};if (window.frames[c].getMenuContents) { contents=window.frames[c].getMenuContents();}else { return false;};for (i=0; i < contents.length; i=i+3) { asynchDebug2('Adding item: ' + contents[i+1]);asynchDebug2('URL: ' + contents[i]);if (contents[i]) { asynchDebug2('url length: ' + contents[i].length);}asynchDebug2('icon: ' + contents[i+2]);if (contents[i] && contents[i].length != 0) { var icon=null;if (contents[i+2] && contents[i+2].length != 0) { icon=contents[i+2];}menu.add(new UilMenuItem(contents[i+1], true, '', contents[i], null, icon, null, menuItemStyle, menuItemSelectedStyle));}};var target=document.getElementById(uniqueID);asynchDebug('EXIT buildAndDisplayMenu');if (showMenu == null || showMenu == true) { return showContextMenu(menuID, target);}};function createDynamicElements(uniqueID, url, menuID, menuItemStyle, menuItemSelectedStyle) { asynchDebug('ENTRY createDynamicElements p1=' + uniqueID + '; p2=' + url + '; p3=' + menuID);var dialogTag=null;var ID=uniqueID + '_DIV';if (document.getElementById(ID) != null) { closeMenu(ID);return;}dialogTag=document.createElement("DIV");dialogTag.style.position="absolute";if (asynchContextMenuDebug < 2) { dialogTag.style.left="0px";dialogTag.style.top="-100px";dialogTag.style.visibility="hidden";}if (asynchContextMenuDebug >= 2 || asynchContextMenuDebug == 999) { dialogTag.style.left="100px";dialogTag.style.top="100px";dialogTag.style.visibility="visible";}dialogTag.id=ID;var styleString='null, null';if (menuItemStyle != null) { styleString="'" + menuItemStyle + "'";}if (menuItemSelectedStyle != null) { styleString=styleString + ", '" + menuItemSelectedStyle + "'";}else { styleString=styleString + ", null";}dialogTag.innerHTML='';document.body.appendChild(dialogTag);asynchDebug('EXIT createDynamicElements');};function asynchDebug(str) { if (asynchContextMenuDebug >= 1 && asynchContextMenuDebug != 999) { alert(str);}};function asynchDebug2(str) { if (asynchContextMenuDebug >= 0 && asynchContextMenuDebug != 999) { alert(str) ;}};function asynchDoFormSubmit(url){ var formElem=document.createElement("form");document.body.appendChild(formElem);formElem.setAttribute("method", "GET");var delimLocation=url.indexOf("?");if (delimLocation >= 0) { var params=url.substring(delimLocation + 1, url.length);url=url.substring(0, delimLocation);var paramArray=params.split("&");for (var i=0; i < paramArray.length; i++) { var name=paramArray[i].substring(0, paramArray[i].indexOf("="));var value=paramArray[i].substring(paramArray[i].indexOf("=") + 1, paramArray[i].length);var inputElem=document.createElement("input");inputElem.setAttribute("type", "hidden");inputElem.setAttribute("name", name);inputElem.setAttribute("value", value);formElem.appendChild(inputElem);};}formElem.setAttribute("action", url);formElem.submit();};var asynchContextMenu_menuCurrentlyLoading=null;function menuMouseOver(id, selectedImage) { if (asynchContextMenu_menuCurrentlyLoading != null) return;portletIdMap[id]='menu_'+id+'_img';showAffordance(id, selectedImage);};function menuMouseOut(id, disabledImage) { if (asynchContextMenu_menuCurrentlyLoading != null) return;hideAffordance(id , disabledImage);portletIdMap[id]="";};function showAffordance(id, selectedImage) { document.getElementById('menu_'+id).style.cursor='pointer';document.getElementById('menu_'+id+'_img').src=selectedImage;};function hideAffordance(id, disabledImage) { document.getElementById('menu_'+id).style.cursor='default';document.getElementById('menu_'+id+'_img').src=disabledImage;};function menuMouseOverThinSkin(id, selectedImage, minimized) { if (asynchContextMenu_menuCurrentlyLoading != null) return;portletIdMap[id]='menu_'+id+'_img';showAffordanceThinSkin(id, selectedImage, minimized);};function menuMouseOutThinSkin(id, disabledImage, minimized) { if (asynchContextMenu_menuCurrentlyLoading != null) return;hideAffordanceThinSkin(id , disabledImage, minimized);portletIdMap[id]="";};function showAffordanceThinSkin(id, selectedImage, minimized) { document.getElementById('menu_'+id).style.cursor='pointer';document.getElementById('portletTitleBar_'+id).className='wpsThinSkinContainerBar wpsThinSkinContainerBarBorder';document.getElementById('title_'+id).className='wpsThinSkinDragZoneContainer wpsThinSkinVisible';document.getElementById('menu_'+id+'_img').src=selectedImage;};function hideAffordanceThinSkin(id, disabledImage, minimized) { document.getElementById('menu_'+id).style.cursor='default';if (minimized == null || minimized == false){ document.getElementById('portletTitleBar_'+id).className='wpsThinSkinContainerBar';}document.getElementById('title_'+id).className='wpsThinSkinDragZoneContainer wpsThinSkinInvisible';document.getElementById('menu_'+id+'_img').src=disabledImage;};var onmousedownold_;function closeMenu(id, disabledImage) { hideCurrentContextMenu();if (portletIdMap[id] == "") { hideAffordance(id, disabledImage);}document.onmousedown=onmousedownold_;};function showPortletMenu(id, portletNoActionsText, isRTL, menuPortletURL, disabledImage, loadingImage) { if (portletIdMap[id].indexOf(id) < 0) return;asynchContextMenuOnMouseClickHandler('menu_'+id,!isRTL,menuPortletURL, null, null, null, null, portletNoActionsText, loadingImage);onmousedownold_=document.onmousedown;document.onmousedown=closeMenu;};function accessibleShowMenu(event , id , portletNoActionsText, isRTL, menuPortletURL, loadingImage) { if (event.which == 13) { asynchContextMenuOnMouseClickHandler('menu_'+id,!isRTL,menuPortletURL, null, null, null, null, portletNoActionsText, loadingImage);}else { return true;};}; // Copyright IBM Corp. 2002, 2008 All Rights Reserved. BrowserDimensions.prototype=new Object();BrowserDimensions.prototype.constructor=BrowserDimensions;BrowserDimensions.superclass=null;function BrowserDimensions(){ this.body=document.body;if (this.isStrictDoctype() && !this.isSafari()) { this.body=document.documentElement;}};BrowserDimensions.prototype.getScrollFromLeft=function(){ return this.body.scrollLeft ;};BrowserDimensions.prototype.getScrollFromTop=function(){ return this.body.scrollTop ;};BrowserDimensions.prototype.getViewableAreaWidth=function(){ return this.body.clientWidth ;};BrowserDimensions.prototype.getViewableAreaHeight=function(){ return this.body.clientHeight ;};BrowserDimensions.prototype.getHTMLElementWidth=function(){ return this.body.scrollWidth ;};BrowserDimensions.prototype.getHTMLElementHeight=function(){ return this.body.scrollHeight ;};BrowserDimensions.prototype.isStrictDoctype=function(){ return (document.compatMode && document.compatMode != "BackCompat");};BrowserDimensions.prototype.isSafari=function(){ return (navigator.userAgent.toLowerCase().indexOf("safari") >= 0);}; // Copyright IBM Corp. 2002, 2008 All Rights Reserved. function ElementJavascriptEventController() { this.elements=new Array();this.arrayPosition=0;this.enableAll=enableRegisteredElementsInternal;this.disableAll=disableRegisteredElementsInternal;this.register=registerElementInternal;this.enable=enableRegisteredElementInternal;this.disable=disableRegisteredElementInternal;function enableRegisteredElementsInternal() { for (c=0; c < this.arrayPosition; c=c+1) { this.elements[c].enable();};};function enableRegisteredElementInternal(id) { for (c=0; c < this.arrayPosition; c=c+1) { if (this.elements[c].ID == id) { this.elements[c].enable();}};};function disableRegisteredElementsInternal() { for (c=0; c < this.arrayPosition; c=c+1) { this.elements[c].disable();};};function disableRegisteredElementInternal(id) { for (c=0; c < this.arrayPosition; c=c+1) { if (this.elements[c].ID == id) { this.elements[c].disable();}};};function registerElementInternal(HTMLElementID, doNotDisable, optionalOnEnableJavascriptAction) { this.elements[this.arrayPosition]=new RegisteredElement(HTMLElementID, doNotDisable, optionalOnEnableJavascriptAction);this.arrayPosition=this.arrayPosition + 1;};};function RegisteredElement(ElementID, doNotDisable, optionalOnEnableJavascriptAction) { this.ID=ElementID;this.oldCursor="normal";this.ItemOnMouseDown=null;this.ItemOnMouseUp=null;this.ItemOnMouseOver=null;this.ItemOnMouseOut=null;this.ItemOnMouseClick=null;this.ItemOnBlur=null;this.ItemOnFocus=null;this.ItemOnChange=null;this.onEnableJS=optionalOnEnableJavascriptAction;this.enable=enableInternal;this.disable=disableInternal;function enableInternal() { document.getElementById(this.ID).style.cursor=this.oldCursor;if (document.getElementById(this.ID).tagName == "BUTTON") { document.getElementById(this.ID).disabled=false;}else { document.getElementById(this.ID).onmousedown=this.ItemOnMouseDown;document.getElementById(this.ID).onmouseup=this.ItemOnMouseUp;document.getElementById(this.ID).onmouseover=this.ItemOnMouseOver;document.getElementById(this.ID).onmouseout=this.ItemOnMouseOut;document.getElementById(this.ID).onclick=this.ItemOnMouseClick;document.getElementById(this.ID).onblur=this.ItemOnBlur;document.getElementById(this.ID).onfocus=this.ItemOnFocus;document.getElementById(this.ID).onchange=this.ItemOnChange;};if (this.onEnableJS != null) { eval(this.onEnableJS);}};function disableInternal() { this.oldCursor=document.getElementById(this.ID).style.cursor;document.getElementById(this.ID).style.cursor="not-allowed";if (document.getElementById(this.ID).tagName == "BUTTON") { document.getElementById(this.ID).disabled=true;}else { this.ItemOnMouseDown=document.getElementById(this.ID).onmousedown;this.ItemOnMouseUp=document.getElementById(this.ID).onmouseup;this.ItemOnMouseOver=document.getElementById(this.ID).onmouseover;this.ItemOnMouseOut=document.getElementById(this.ID).onmouseout;this.ItemOnMouseClick=document.getElementById(this.ID).onclick;this.ItemOnBlur=document.getElementById(this.ID).onblur;this.ItemOnFocus=document.getElementById(this.ID).onfocus;this.ItemOnChange=document.getElementById(this.ID).onchange;document.getElementById(this.ID).onmousedown=function () { void(0); return false; };document.getElementById(this.ID).onmouseup=function () { void(0); return false; };document.getElementById(this.ID).onmouseover=function () { void(0); return false; };document.getElementById(this.ID).onmouseout=function () { void(0); return false; };document.getElementById(this.ID).onclick=function () { void(0); return false; };document.getElementById(this.ID).onblur=function () { void(0); return false; };document.getElementById(this.ID).onfocus=function () { void(0); return false; };document.getElementById(this.ID).onchange=function () { void(0); return false; };};};if (!doNotDisable) { this.disable();}}; /* The selected text function */ document.write(''); document.write(''); var selectedString=""; function getSelectedHTML() { selectedString=""; var rng=undefined; if (window.getSelection) { selobj = window.getSelection(); if (!selobj.isCollapsed) { if (selobj.getRangeAt) { rng=selobj.getRangeAt(0); } else { rng = document.createRange(); rng.setStart(selobj.anchorNode,selobj.anchorOffset); rng.setEnd(selobj.focusNode,selobj.focusOffset); } if (rng) { DOM = rng.cloneContents(); object = document.createElement('div'); object.appendChild(DOM.cloneNode(true)); selectedString=object.innerHTML; } else { selectedString=selobj; } } } else if (document.selection) { selobj = document.selection; rng = selobj.createRange(); if (rng && rng.htmlText) { selectedString = rng.htmlText; } else if (rng && rng.text) { selectedString = rng.text; } } else if (document.getSelection) { selectedString=document.getSelection(); } } function copyselected() { setTimeout("getSelectedHTML()",50); return true; } document.onmouseup = copyselected; document.onkeyup = copyselected; /* The expanding function */ function readspeaker_ar(rscall,playerid) { globalcount = 0; var newrscall=issuePOST(rscall); var savelink=issuePOST(rscall+"&save=1"); start_rs_table="
| ";
var rs_embed="";
rs_downloadlink=" لا يوجد صوت؟"; close_rs=" أغلق النافذة"; end_rs_table=" |
| ";
var rs_embed="";
var rs_downloadlink=" No sound?"; var close_rs=" Close player"; var end_rs_table=" |