function setactivemenu(){
if (document.getElementById){
if(document.getElementById('menumark')){
	document.getElementById('menumark').style.backgroundColor="#E9EFF3";
}
}
}
function Mover(obj) { 
if (document.getElementById){
if(document.getElementById(obj)){
	document.getElementById(obj).style.backgroundColor="#E9EFF3";
}
}
}
function Mout(obj) { 
if (document.getElementById){
if(document.getElementById(obj)){
	document.getElementById(obj).style.backgroundColor="#BAC2CF";
	}
}
}

function partnerwin(article_id){

url = "/article/articleview/" + article_id + "/?SectionIDOverride=2&PrintableVersion=enabled";

MM_openBrWindow(url,'apartner','','500','250','true')

}

function MM_openBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
 apartner =  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
 apartner.focus();
}