

function openCSVFile(fileString)
{
	if(fileString=='#')
	{
		alert('No CSV file Found');
		return false;
	}
	else
	{
		var newwindow = window.open(fileString);
		newwindow.focus();
		return false;
	}
			
			
}

function DownloadCSV()
{
var csvContent=document.getElementById("hdnCSVString");
if(csvContent)
{
	var myChild=window.open("csv.htm","CSV","width=300,height=200,location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,fullscreen=no")
	//myChild.document.contentType="application/vnd.ms-excel";
	myChild.document.write(csvContent.value);
}
}


function Validate_Titles_MainPage()
{
	var lang = document.getElementById("").value;
	var mediatype = document.getElementById("").value;
	var projectid = document.getElementById("").value;
	var msg="";
	
	if(lang=="0")
	{
		msg="- Choose Language"+'\n';
	}
	if(mediatype=="0")
	{
		msg+="- Choose Media Type"+'\n';
	}
	if(porjectid=="0")
	{
		msg+="- Choose Project"+'\n';
	}
	
	if(msg=="")
	{
		return true;
	}
	else
	{
		alert(msg);
		return false;
	}
	
}