dbgCount=0;
banerId = 0;
var mainStartY = Math.round((window.screen.height-90)/2-(155/2))-170;
if(mainStartY<=0)mainStartY=1;

function debugWrite(what)
{
 if(!self.debug||self.debug.closed){
                 debug=window.open('','dbg', 'toolbar=no,menubar=no,scrollbars=yes, resizable=yes,status=no,location=no,directories=no,top=10, left=610,height=300,width=400');
                 debug.document.write("<HTML><HEAD><TITLE>[W-debugger]</TITLE></HEAD><BODY>")
                }
 dbg="";
 if(what=="[array]")dbg="Array("+what.join(",")+")"
 else if(what=="[object]")dbg="";
 else dbg=what;

 debug.document.write("<table><td><font color=red>msg number <b>"+dbgCount+"</b></font>: </td><td>"+dbg+"</td></table>")
 dbgCount++;
 debug.focus();

}

MWtop=0;
function open_compinfo(gid)
{
    var tmp;

             
// infowin=window.open('http://www.artserwis.pl/popups/artist_info.php?gid='+gid,'a'+MWtop,'width=610, height='+(window.screen.height-90-(60*MWtop))+', left='+(window.screen.width-625)+', top='+(60*MWtop)+', scrollbars=yes, resizable=yes, toolbar=no location=no,status=yes')
 infowin=window.open('./popups/artist_info.php?gid='+gid,'a'+MWtop,'width=610, height='+(window.screen.height-90-(60*MWtop))+', left='+(window.screen.width-625)+', top='+(60*MWtop)+', scrollbars=yes, resizable=yes, toolbar=no location=no,status=yes')
  infowin.focus();
MWtop++;

}

function msg_to(rid,from_popup,use_answer,use_topic)
{
 if(use_answer) rw=window.open('http://artserwis.pl/'+(from_popup==1?'':'popups/')+'message.php?rid='+rid+'&re_body='+use_answer+'&re_topic='+use_topic,'ee','width=450,height=180, top=30,left=30,status=yes,resizable=no,location=no,toolbar=no,scrolbars=no');
 else rw=window.open((from_popup==1?'':'popups/')+'message.php?rid='+rid,'ee','width=450,height=180, top=30,left=30,status=no,resizable=no,location=no,toolbar=no,scrolbars=no');
 rw.focus()
}


function do_external(script,mesg)
{
 w=window.open(script,'ext','top=4000, left=4000');
 if(mesg!='')alert(mesg);
}


function hilite_tr(id,color)
{
  //alert(id+' '+document.all[id]);
 if(document.getElementById)document.getElementById(id).style.backgroundColor = color;
  else  if(document.all)document.all[id].style.backgroundColor = color;

}

function popup_image(wdth,hght,id,qs)
{
 //alert(window.screen.height+','+window.screen.width  );
 bigw = Math.floor(window.screen.width*0.9);
 bigh = Math.floor(window.screen.height*0.9);
 cw = Math.floor(window.screen.width/2-bigw/2);
 ch = Math.floor(window.screen.height/2-bigh/2);
 
 
 win = window.open('image_popup.php?'+qs,'wer','width='+(bigw)+', height='+(bigh)+',scrollbars=no, top=10, left=10, location=no, status=no, resizable=yes');
 win.focus();
}

function img_popup(fname){
 win = window.open('http://artserwis.pl/popups/img_popup.php?fname='+fname,'wer','width=200, height=200,scrollbars=no, top=10, left=10, location=no, status=no, resizable=yes');
}

function post_to_friend()
{
 win = window.open('http://artserwis.pl/popups/post_popup.php','wer','width=300, height=120,scrollbars=no, location=no, status=no, resizable=no');
 win.focus();
  
}

function przeslij_prace(praca_id)
{
 win = window.open('http://www.artserwis.pl/popups/przeslij_prace.php?fid='+praca_id,'wer','width=300, height=120,scrollbars=no, location=no, status=no, resizable=no');
 win.focus();
}

function start_upload()
{
// alert('width=200, height=120,scrollbars=no, top='+(Math.round(window.screen.height/2)-100)+', left='+(Math.round(window.screen.width/2)-60)+', location=no, status=yes, resizable=no');

  window.upl = window.open('templates/upload.html','upl','width=200, height=120,scrollbars=no, top='+(Math.round(window.screen.height/2)-60)+', left='+(Math.round(window.screen.width/2)-120)+', location=no, status=yes, resizable=no');
  window.upl.focus();
}
function end_upload()
{
  //alert(window.upl);
  upload_close=1;
}

function sond_action(sonda_id,action)
{
    //alert(sonda_id+' '+action);
    if(action=='undefined' || !action) alert('Zanim zagłosujesz, musisz wybrać odpowiedź');
    else {
			 w = window.open('http://artserwis.pl/sonda_act.php?sid='+sonda_id+'&aid='+action,'ss','width=480, height=200,top=40, left=40,scrollbars=no, location=no, status=no, resizable=no');
			 w.focus();
        }
}

function glossary(keyword)
{
    //alert(sonda_id+' '+action);
			 w = window.open('http://artserwis.pl/glossary.php?key='+keyword,'ss','width=480, height=180,scrollbars=no, top=40, left=40,location=no, status=no, resizable=no');
			 w.focus();
}


function find_radioval(oForm,radioname)
{
    var i;
    
    //alert(oForm+' '+radioname);
    for(i=0;i<oForm.elements.length;i++){
            if(oForm.elements[i].name==radioname && oForm.elements[i].checked) return oForm.elements[i].value;
        }
}