function openPopUp_520x390(href, target)
{
	window.open(href, target, 'width=516, height=390, top=0, toolbar=0, location=0, directories=0, status=1, menuBar=0, scrollBars=1, resizable=0');
	return false;
}

function go(idx)
{
	window.open(baseURL + '/' + idx, '', '');
}

function changeNewsDetailFlash(idx)
{
	eval('elm = news_data');
	if(typeof(window['elm']) == "undefined")
		return;
	
	isIE = navigator.appName.indexOf("Microsoft") != -1;
	
	F = (isIE) ? window['headlineFlashTitle'] : document['headlineFlashTitle']
	
	document.getElementById("news_image").src = imageURL + elm[idx]['image'] + '.jpg';
	//document.getElementById("news_date").innerHTML = elm[idx]['date'];
	document.getElementById("news_spot").innerHTML = '<a href="' + baseURL + elm[idx]['link'] + '" target="_blank">' + elm[idx]['short_content'] + '</a>';
	document.getElementById("news_link").href = baseURL + elm[idx]['link'];
	F.sendAUtoFlash(elm[idx]['headline']);

	return false;
}
