function showMovieModal (user,id) {
var w, h, s, wc, hc;
w = (window.innerWidth ? window.innerWidth : (document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.offsetWidth));
h = (window.innerHeight ? window.innerHeight : (document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.offsetHeight));
wc = window.screenLeft;
hc = window.screenHeight;
if (user) s = 'movie.php?id='+id+'&uid='+user;
else s = 'movie.php?id='+id;
window.open (s, ''); //, 'width='+w+',height='+h+',top='+hc+',screenY='+hc+',left='+wc+',screenX='+wc);
}
function showSetupModal (id) {
var w, h, s, wc, hc;
w = (window.innerWidth ? window.innerWidth : (document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.offsetWidth));
h = (window.innerHeight ? window.innerHeight : (document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.offsetHeight));
wc = window.screenLeft;
hc = window.screenHeight;
s = 'movie.php?id='+id+'&mode=setup';
window.open (s, ''); //, 'width='+w+',height='+h+',top='+hc+',screenY='+hc+',left='+wc+',screenX='+wc);
}
function showhide_sessions (signid, sesid, sescount) {
var signObj = document.getElementById (signid);
var sesObj = document.getElementById (sesid);
if (sesObj.style.visibility == 'hidden') {
// показать
signObj.value = "[ ^ ]";
//sesObj.style.position = 'relative';
sesObj.style.display = '';
sesObj.style.visibility = '';
} else {
// скрыть
signObj.value = "[ + ] ("+sescount+')';
//sesObj.style.position = 'absolute';
sesObj.style.display = 'none';
sesObj.style.visibility = 'hidden';
}
}
function showCommentModal (user) {
var w=800;
var h=520;
var wc=10; //parseInt((screen.availWidth-w)/2);
var hc=5; // parseInt((screen.availHeight-h)/2);
window.open('dialogfm.php?action=comment&id=6352&uid='+user,'','width='+w+',height='+h+',top='+hc+',screenY='+hc+',left='+wc+',screenX='+wc);
}