// Functions used to interact with the flash upload widget

function uploadURL() {
	if(document.location.toString().indexOf('360nightlife') != -1)
		return "http://360nightlife.com/assets/multiple_upload";
	else
		return "http://localhost:3000/assets/multiple_upload";
}

function extractID() {
	loc = document.location.toString().split("/");
	loc = loc[loc.length - 1];
	return loc;
}

function getCookie() {
	return document.cookie;
}

function doneUploading() {
	window.location.reload();
}