
	function newWindow(URLaddr, newWidth, newHeight) { 

			var w = window.open(URLaddr,'', 'scrollbars=yes,resizable=yes,top=100,left=100,width=' + newWidth + ',height=' + newHeight);
			
			return 0;
	}

	function swapImage(imgElem, picPath) {
	
		//alert("hello");
		imgElem.style.backgroundImage = 'url(' + picPath + ')';
		//alert(picPath);
				//imgElem.src = picPath;
		return true;
	
	}
	
	function deleteLink(deleteMethod) {
	
		if (confirm('Are you sure you want to delete this item?'))
		{
			location.href= deleteMethod;
			return true
		}
	
		return false
	
	}
	