// JavaScript Document

function switch_news(id, img, title, spot) {
	document.getElementById('news_img').src = 'data/img/'+ img +'-news-2.jpg';
	document.getElementById('news_img_link').href = 'news.php?id='+ id;
	document.getElementById('news_title').innerHTML = title;
	document.getElementById('news_spot').href = 'news.php?id='+ id;
	document.getElementById('news_spot').innerHTML = spot;
}

function popup(url, w, h) {
	window.open(url, '', 'toolbar=0, scrollbars=1, location=0, statusbar=0, menubar=0, resizable=1, width='+ w +', height='+ h +', left=250, top=150');
}

