| Current Path : /var/www/element/data/www/vsl-gates.ru/images/ |
| Current File : /var/www/element/data/www/vsl-gates.ru/images/showimage.js |
function showImage(img, title) {
pic = new Image();
pic.src =(img);
checkFile(img, title);
}
function checkFile(img, title) {
if((pic.width != 0) && (pic.height != 0)) {
makeWindow(img, title);
}
else {
act = "checkFile('" + img + "', '" + title + "')";
time = setTimeout(act, 50);
}
}
function makeWindow(img, title) {
ht = pic.height;
wd = pic.width;
var args = "height=" + ht + ",innerHeight=" + ht;
args += ",width=" + wd + ",innerWidth=" + wd;
if (window.screen) {
var avht = screen.availHeight;
var avwd = screen.availWidth;
var xcen = (avwd - wd) / 2;
var ycen = (avht - ht) / 2;
args += ",left=" + xcen + ",screenX=" + xcen;
args += ",top=" + ycen + ",screenY=" + ycen + ",resizable=yes";
}
popwin=window.open("","_blank",args);
popwin.document.open();
popwin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" style="overflow: hidden;"><head><title>'+title+'</title></head><body><div style="position: absolute; top: 0; left: 0;"><a href="javascript:window.close()" title="Щёлкните, чтобы закрыть окно"><img src="'+img+'" width="'+wd+'" height="'+ht+'" border="0"></a></div></body></html>');
popwin.document.close();
}