function OpenDialog(Address,WinWidth,WinHeight) {
	var load = window.open(Address,'','scrollbars=yes,menubar=no,height='+WinHeight+',width='+WinWidth+',resizable=yes,toolbar=no,location=no,status=no'); 
}

function ConfirmDel(Address) {
	if(confirm('Are you sure you want to delete this course?')) {
		//alert('This course would be deleted if the function was complete');
		window.location.href=Address;
	}
}

function CloseWindow() {
  opener.window.location.reload();
  window.close();
}