
function okno(l, t, w, h,URL){
	var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes" + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
	self.editwin= window.open(URL,"okno",windowprops);
	self.editwin.moveTo(Math.round((screen.width-w)/2),0);
	self.editwin.moveTo(Math.round((screen.width-w)/2),Math.round((screen.height-h)/2));
	self.editwin.focus();
}


function editwindow1(l, t, w, h,URL){
	var windowprops = "location=no,scrollbars=yes,menubars=yes,toolbars=yes,resizable=yes" + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
	self.editwin1= window.open(URL,"okno1",windowprops);
	self.editwin1.moveTo(Math.round((screen.width-w)/2),0);
	self.editwin1.moveTo(Math.round((screen.width-w)/2),Math.round((screen.height-h)/2));
	self.editwin1.focus();
}

var bookmarkurl=document.location
var bookmarktitle=document.title
function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

