/**
 * Cikkek javascript file
 * 
 * @author Gábor Aubert
 * @version 1.0
 * @package Application
 * 
 */


/*
 * Nyomtatás
 * @param integer cikk ID
 */

 function printArticle(id) {
	width = 730;
	height = screen.height;
	center = true;
	URL = '/cikk/nyomtat/' + id;
	day = new Date();
	id = day.getTime();
	eval("cikk_nyomtat" + id + " = window.open(URL, 'cikk_nyomtat" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + width + ",height=" + height + ((center) ? ",left = " + ((screen.width - width) / 2) : "") + ((center) ? ",top = " + ((screen.height - height) / 2) : "") + "');");
//	eval("cikk_nyomtat" + id + ".focus();");
//	eval("cikk_nyomtat" + id + ".print();");
//	eval("cikk_nyomtat" + id + ".close();");
	return false;
}


/*
 * Cikk küldés
 * @param integer cikk ID
 */

 function sendArticle(id) {
/*	width = 485;
	height = 450;*/
	width = 520;
	height = 550;
	center = true;
	URL = '/cikkkuld/' + id;
	day = new Date();
	id = day.getTime();
	eval("cikk_nyomtat" + id + " = window.open(URL, 'cikk_nyomtat" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + width + ",height=" + height + ((center) ? ",left = " + ((screen.width - width) / 2) : "") + ((center) ? ",top = " + ((screen.height - height) / 2) : "") + "');");
//	eval("cikk_nyomtat" + id + ".focus();");
//	eval("cikk_nyomtat" + id + ".print();");
//	eval("cikk_nyomtat" + id + ".close();");
	return false;
}

function winopen(kontent) {
	winContent = window.open(kontent,'kepgaleria','height=690,width=1020,status=no,' +
							'toolbar=no,menubar=no,resizable=no,scrollbars=no,titlebar=no');
	winContent.focus();
} 