// Aperture finestra foto listino
function opn(ft,w,h)
{
window.open('../../foto_list.php?foto='+ft,'FOTO','width='+w+',height='+h);
}
// Aperture finestra rassegna stampa
function opn_rs(ft,w,h)
{
window.open('../../foto_rs.php?foto='+ft,'FOTO','width='+w+',height='+h+',scrollbars=2');
}
// Aperture finestra eventi
function opn_ev(ft,w,h)
{
window.open('../../foto_ev.php?foto='+ft,'FOTO','width='+w+',height='+h+',scrollbars=2');
}
// Aperture finestra gazzette
function opn_ga(ft,w,h)
{
window.open('../../foto_ga.php?foto='+ft,'FOTO','width='+w+',height='+h+',scrollbars=2');
}
// Aperture finestra sentenze
function opn_se(ft,w,h)
{
window.open('../../foto_se.php?foto='+ft,'FOTO','width='+w+',height='+h+',scrollbars=2');
}
// Aperture finestra varie
function opn_all(ft,w,h)
{
window.open('../../foto_all.php?foto='+ft,'FOTO','width='+w+',height='+h+',scrollbars=2');
}
// Aperture finestra video
function opn_stream(v,w,h)
{
var win = null;
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
window.open('../stream.php?v='+v+'&w='+w+'&h='+h,'VIDEO','width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition);
}
// Aperture finestra video
function opn_stream_cond(v,w,h)
{
var win = null;
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
window.open('../../stream.php?v='+v+'&w='+w+'&h='+h,'VIDEO','width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition);
}