function addfav()
{
   if (document.all)
   {
      window.external.AddFavorite("http://www.novisplet.com","Izdelava spletnih strani - novisplet.com")
   }
}

function OpenWindow(url, width, height, top, left) {
	if(top == undefined) top = 0;
	if(left == undefined) left = 0;
	
	var win = window.open(url, "",'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width='+width+',height='+ height +',top='+top+',left='+left);
}

function popUp(url, width, height, top, left) {
	OpenWindow(url, width, height, top, left);
}