// JavaScript by Andrej Zeleznik



function openWindow(cHtml,cWidth,cHeight)

{
	var scr= screen.availWidth;
	scr= (scr - 400)/2;
	openW=window.open(cHtml,"openW","'scrolling=no,menu=no,toolbar=0,scrollbars=0,resizable=0,left="+scr+",top=100,width="+cWidth+",height="+cHeight,true);

	return false;
}





function DeleteMessage() {

  var truthBeTold = window.confirm("Ali ste prepričani?");

  if (truthBeTold) {

    return true;

  } 

  else  

    return false;



}


