
function aa(){
var newWin = window.open('../media/media1.html','hello','width=580,height=555');
var windowX = (window.screen.width - 580) / 2 ;
var windowY = (window.screen.height - 555) / 2 ;
newWin.moveTo(windowX,windowY);
}
function bb(){
var newWin = window.open('templates/chinese/media/media1.html','hello','width=580,height=555');
var windowX = (window.screen.width - 580) / 2 ;
var windowY = (window.screen.height - 555) / 2 ;
newWin.moveTo(windowX,windowY);
}