//written by notmyhome.com - The World Is Not My Home
//you may use these scripts and, of course, modify them free of charge

//otwieranie okienek komiksu i zastzezen/copyright
function winOpen(filename){
var newWindow=eval("window.open('"+ filename +".html','cntrl','width=550,height=430,resizable=yes,top='+((screen.availHeight/2)-(215))+',left='+((screen.availWidth/2)-(275)))");
newWindow.focus();
}
//otwieranie okienka z informacja na stronie glownej przez onLoad
function infoOpen(filename){
var newWindow=eval("window.open('"+ filename +".html','info','width=380,height=250,top=10,left='+((screen.availWidth)-(400)))");
}
