var win = null; function pic(pid){ img= 'http://www.emilife.com/upload/'+pid+''; foto= new Image(); foto.src=(img); Control(pid); } function Control(pid){ if((foto.width!=0)&&(foto.height!=0)){ viewFoto(pid); } else{ temp="Control('"+pid+"')"; interval=setTimeout(temp,10); } } function viewFoto(pid){ LeftPosition = (screen.width) ? (screen.width-foto.width)/2 : 0; TopPosition = (screen.height) ? (screen.height-foto.height)/2 : 0; settings ='top='+TopPosition+', left='+LeftPosition+', width='+foto.width+', height='+foto.height+', buttons=no, scrollbars=no, location=no, menubar=no, resizable=no, status=no, directories=no, toolbar=no' rnd = (Math.round((Math.random()*999)+1)); url ='http://www.emilife.com/picture.php?pic='+pid+''; window.open(url, "w"+rnd, settings); void(0); } function mhand(ctrl){ var win_ie_ver = parseFloat(navigator.appVersion.split("MSIE")[1]); if (win_ie_ver < 6) { ctrl.style.cursor='hand'; } else { ctrl.style.cursor='pointer'; } }