function chimg(img, src) {
	elm = document.getElementById(img);
	elm.src = src;
}

function mediaview(id, title, save) {
	if (save=='1') save = '&save=yes';
	else save = '';

	var mv = window.open('mediaview.php?id='+id+'&html=yes'+save+'&title='+title, 'MEDIAVIEW', 'width=300, height=300, scrollbars=no');
	mv.focus();
}

function rungame() {
	var game = window.open('game/game.php', 'GAME', 'width=600, height=450, scrollbars=no');
	if(game) game.focus(); 
}

function popup(w, h, url) {
	var win = window.open(url, 'popup', 'width='+w+', height='+h+', top=0, left='+(screen.width-w-11)/2+', scrollbars=no, resize=yes');
	if(win) win.focus();
}
