
function aa(){
var newWin = window.open('magazine/media.html','hello','width=600,height=380');
var windowX = (window.screen.width - 600) / 2 ;
var windowY = (window.screen.height - 380) / 2 ;
newWin.moveTo(windowX,windowY);
}
function bb(){
var newWin = window.open('../magazine/media.html','hello','width=600,height=380');
var windowX = (window.screen.width - 600) / 2 ;
var windowY = (window.screen.height - 380) / 2 ;
newWin.moveTo(windowX,windowY);
}

document.oncontextmenu=new Function("event.returnValue=false;"); 
document.onselectstart=new Function("event.returnValue=false;"); 
