function createWindow(strLink, strWindowName, intWidth, intHeight, bolScrollbars) {
	window.open(
		strLink,
		strWindowName,
		'width=' + intWidth + 
		',height=' + intHeight + 
		',directories=no' + 
		',location=no' +
		',menubar=no' +
		',scrollbars=' + bolScrollbars + 
		',status=no' + 
		',toolbar=no' + 
		',resizable=yes'
	);
}

function confirmDelete(strLink) {
	if (confirm('Are you sure you want to delete this record?')) {
		window.location.href = strLink;
	}
}