/*
# Qarholder. All rights reserved.
#
# T Nick:           Date:       Info:
# -------------------------------------------------------------------------
# D wbuczak        14/07/2006  Pierwsza implementacja
#
#
#
# -------------------------------------------------------------------------
*/



function confirmFormSubmit(formId,question,frameId,url) {
  if (confirm(question)) {      				
		document.getElementById(formId).submit();
		reloadObject(frameId,url);				
  }
  return false;
}


function reloadObject(frameId,url)
{  
   frames[frameId].location.href=url;
}  // reload


function pic_NewWindow(picWidth,picHeight,picURL) {
  var top, leftoffset;
  top =  (window.screen.availHeight-picHeight)/2;
  leftoffset = (window.screen.availWidth-picWidth)/2;
  window.open(picURL,'FOTO','left='+leftoffset+',top='+top+',width='+picWidth+',height='+picHeight);
 }



