// JavaScript Document

function valSyncForm(){
	var project_titleOBJ = document.getElementById('project_title');
	var synopsisOBJ = document.getElementById('synopsis');
	var termOBJ = document.getElementById('term');
	var territoryOBJ = document.getElementById('territory');
	var media_typeOBJ = document.getElementById('media_type');
	var song_usageOBJ = document.getElementById('song_usage');
	var nature_of_useOBJ = document.getElementById('nature_of_use');
	var min_proposed_budgetOBJ = document.getElementById('min_proposed_budget');
	var max_proposed_budgetOBJ = document.getElementById('max_proposed_budget');

	if(project_titleOBJ.value == ''){ alert('Please enter the Title of your Project to proceed.'); project_titleOBJ.focus(); return false; }
	if(synopsisOBJ.value == ''){ alert('Please enter the Synopsis of your Project to proceed.'); synopsisOBJ.focus(); return false; }
	if(min_proposed_budgetOBJ.value == ''){ alert('Please enter the Minimum Proposed Budget for this Beat\'s Sync/Master Use License'); min_proposed_budgetOBJ.focus(); return false; }
	if(max_proposed_budgetOBJ.value == ''){ alert('Please enter the Maximum Proposed Budget for this Beat\'s Sync/Master Use License'); max_proposed_budgetOBJ.focus(); return false; }
}

function showSyncDetails(sid){
	var ipop_con = document.getElementById('ipop_icontent_wide');
	ipop_con.innerHTML = "";

	ipop_con.innerHTML = processing;
	$.get(sdom+"modules/ajax-manage-sync.mod.php", { s_id: sid },
	function(data){
		ipop_con.innerHTML = data;
	});

	showIpopWide();
}
