// JavaScript Document

function alertDelete(url) {
	
	if (window.confirm('Are you sure you want to Delete this item?')) {
		location = url;
	}
}


function openWindow(url, name) {
	newWin = window.open(url, name);
	newWin.focus();
}
