/*
 * Javascript support for Entertainment Calendar
 */



/**
 * Open the description of the event.
 */
function openDescription(url) {
  var descWin = window.open(url,'descWin','scrollbars=yes,location=no,status=no,menubar=no,height=460,width=350,resizable=yes');
  descWin.focus();
} // openDescriptionPage()

function openInfoWindow(url) {
  var infoWin = window.open(url,'infoWin','scrollbars=yes,location=no,status=no,menubar=no,height=350,width=300,resizable=yes');
  infoWin.focus();
} // openInfoWindow()

function confirmDeleteUser() {
	return confirm('Are you sure you want to delete this user?\nAll ads for this user will be deleted as well.');
} // confirmDeleteUser()

function confirmDeleteVenue() {
	return confirm('Are you sure you want to delete this venue?\nAll ads for this venue will be deleted as well.');
} // confirmDeleteUser()

function confirmDeleteEvent() {
	return confirm('Are you sure you want to delete this event?');
} // confirmDeleteUser()
