// JavaScript Document

//pass values are "element id"   to change the Color of Table Cell

var eId

function onOver(eId){

document.getElementById(eId).style.backgroundColor='#FAB93B'; 

document.getElementById(eId).style.cursor='hand';

document.getElementById(eId).style.color='#042975';

self.status = 'PMA Pakistan';

}



function onOut(eId){

document.getElementById(eId).style.backgroundColor='';

document.getElementById(eId).style.color='';

self.status = '-::-Bank AL Habib-::-';

}



function onSelected(eId){

document.getElementById(eId).style.backgroundColor='#042975';

document.getElementById(eId).style.color='#FAB93B';

self.status = '-::-Bank AL Habib-::-';

}



function loadUrl(getUrl) {

window.open(getUrl ,'_parent','scrollbars=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no,menubar=no');

self.status = '-::-Bank AL Habib-::-';

}



function showHand(eId)

{

	document.getElementById(eId).style.cursor='hand';

	document.getElementById(eId).style.color= '#042975'; 

   //document.getElementById(eId).style.font-weight= '500';

}

// to quickly find out or load the page 



function quickURL(getURL){

//alert(getURL);

window.open(getURL,'_parent','scrollbars=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no,menubar=no');

self.status = '-::-Bank AL Habib-::-';

}


