// pop up script version 2.0
// this script was written in 2004, by me, dj-bobr ;)
// you may use it, edit it, but pls give credit and link to my web
// n-joy it *88*
function popup(image,x,y,t) {
var lf=(screen.width/2)-(x/2);
var to=0.83*((screen.height/2)-(y/2));
window.open('pop.php?img='+image+'&title='+t,'popup','width='+x+'px,height='+y+',top='+to+'px,left='+lf+'px,toolbar=0,menubar=0,resizable=1,scrollbars=0,status=0,location=0,directories=0,copyhistory=0');
}
function simplepopup(image,x,y,t) {
var lf=(screen.width/2)-(x/2);
var to=0.83*((screen.height/2)-(y/2));
window.open('pop.php?img='+image+'&title='+t,'popup','width='+x+'px,height='+y+',top='+to+'px,left='+lf+'px,toolbar=0,menubar=0,resizable=1,scrollbars=0,status=0,location=0,directories=0,copyhistory=0');
}
function htmlfilepopup(htmlfile,x,y) {
var lf=(screen.width/2)-(x/2);
var to=0.83*((screen.height/2)-(y/2));
window.open(htmlfile,'popup','width='+x+'px,height='+y+',top='+to+'px,left='+lf+'px,toolbar=0,menubar=0,resizable=1,scrollbars=1,status=0,location=0,directories=0,copyhistory=0');
}