/**
 * Send to the app to delete an advertiser's site
 * @param int id
 * @return false
 */
function advertiserSiteGoToDelete(id) {
	document.getElementById('advertiserSiteGoToDelete_id').value=id;
	document.getElementById('advertiserSiteGoToDelete_form').submit();
	return false;
}

/**
 * Send to the app to delete a publisher's site
 * @param int id
 * @return false
 */
function publisherSiteGoToDelete(id) {
	document.getElementById('publisherSiteGoToDelete_id').value=id;
	document.getElementById('publisherSiteGoToDelete_form').submit();
	return false;
}

/**
 * Send to the app to delete a publisher's place
 * @param int id
 * @return false
 */
function publisherPlaceGoToDelete(id) {
	document.getElementById('publisherPlaceGoToDelete_id').value=id;
	document.getElementById('publisherPlaceGoToDelete_form').submit();
	return false;
}

/**
 * Send to the app to delete an advertiser's campaign
 * @param int id
 * @return false
 */
function advertiserCampaignGoToDelete(id) {
	document.getElementById('advertiserCampaignGoToDelete_id').value=id;
	document.getElementById('advertiserCampaignGoToDelete_form').submit();
	return false;
}

/**
 * Send to the app to choose a publisher site
 * @param int id
 * @return false
 */
function advertiserCampaignGoToChoosePublisher(id) {
	document.getElementById('advertiserCampaignGoToChoosePublisher_id').value=id;
	document.getElementById('advertiserCampaignGoToChoosePublisher_form').submit();
	return false;
}

/**
 * Send to the app to choose a publisher place
 * @param int id
 * @return false
 */
function advertiserCampaignGoToChoosePlace(id) {
	document.getElementById('advertiserCampaignGoToChoosePlace_id').value=id;
	document.getElementById('advertiserCampaignGoToChoosePlace_form').submit();
	return false;
}

/**
 * Send to the app to choose a publisher site's place
 * @param int id
 * @return false
 */
function advertiserCampaignGoToSelectPlace(id) {
	document.getElementById('advertiserCampaignGoToSelectPlace_id').value=id;
	document.getElementById('advertiserCampaignGoToSelectPlace_form').submit();
	return false;
}

/**
 * Goto model delete confirmation page
 * @param int id
 * @return false
 */
function advertiserCampaignModelGoToDelete(id) {
	document.getElementById('advertiserCampaignModelGoToDelete_id').value=id;
	document.getElementById('advertiserCampaignModelGoToDelete_form').submit();
	return false;
}

/**
 * Goto BL delete page
 * @param int id
 * @return false
 */
function publisherBlacklistGoToDelete(id) {
	document.getElementById('publisherBlacklistGoToDelete_id').value=id;
	document.getElementById('publisherBlacklistGoToDelete_form').submit();
	return false;
}

/**
 * Goto Advertiser Resubmit page
 * @param int id
 * @return false
 */
function advertiserSiteGoToResubmit(id) {
	document.getElementById('advertiserSiteGoToResubmit_id').value=id;
	document.getElementById('advertiserSiteGoToResubmit_form').submit();
	return false;
}

/**
 * Goto Advertiser Resubmit page
 * @param int id
 * @return false
 */
function publisherSiteGoToResubmit(id) {
	document.getElementById('publisherSiteGoToResubmit_id').value=id;
	document.getElementById('publisherSiteGoToResubmit_form').submit();
	return false;
}