function popUp(url, w,h, scroll)
{
	if (scroll == '') scroll = 'no';
	var width= w + 20;
	if (h <= 600) 
		var height = h + 40;
	else 
		var height = 650;
	var left = (screen.width/2) - width/2;
	var top = (screen.height/2) - height/2;
	window.open(url,'popup','toolbar=no,location=no,directories=no,status=no,scroll=auto,menubar=no,scrollbars=' + scroll + ',resizable=yes,copyhistory=no,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top);
	return false;
}

function ObjDelete(link)
{
	if(confirm("Warning!\nAre you sure that you want to permanently delete this item?\nThis operation cannot be undone!"))
	{
		document.location.href=link;
	}
	else return false;
}

function ObjDeleteForm()
{
	if(confirm("Warning!\nAre you sure that you want to permanently delete this item?\nThis operation cannot be undone!"))
	{
		return true;
	}
	else return false;
}


/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}
