
function viewImages(lang, id, img, www_path)
{

	win_width=800; // 700
	win_height=600; // 500

	pos_left=Math.round((screen.width-win_width)/2);
	pos_top=Math.round((screen.height-win_height)/2);

	window.open(www_path+"www/news_images.php?lang="+lang+"&id="+id+"&img="+img, "news_images", "fullscreen=no,width="+win_width+",height="+win_height+",left="+pos_left+",top="+pos_top+",resizable=yes,scrollbars=yes");

	return false;
}

function newsPrint(id, lang, www_path)
{
	win_width=750;
	win_height=550;

	pos_left=Math.round((screen.width-win_width)/2);
	pos_top=Math.round((screen.height-win_height)/2);

	open_url = www_path+"newsprint/"+lang+"/"+id;

	window.open(open_url, "print_tisk", "fullscreen=no,width="+win_width+",height="+win_height+",left="+pos_left+",top="+pos_top+",resizable=yes,scrollbars=yes");

	return false;
}

