function popPicture(url, width, height) {
if (navigator.appVersion.indexOf('4')!=-1) {
xTop=screen.width/2-(width/2);yTop=screen.height/2-(height/2);
} else {
xTop=20;yTop=20;
}
window.open(url, 'TTT', 'height='+height+',width='+width+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left='+xTop+',top='+yTop+'');
}
function popPictureS(url, width, height) {
if (navigator.appVersion.indexOf('4')!=-1) {
xTop=screen.width/2-(width/2);yTop=screen.height/2-(height/2);
} else {
xTop=20;yTop=20;
}
window.open(url, 'TTT', 'height='+height+',width='+width+',scrollbars=1,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left='+xTop+',top='+yTop+'');
}

