function Open_Win(FileName)
{
	var NewWin = window.open('', 'BigPicture', 'toolbar=no,directories=no,status=yes,scrollbars=no,menubar=no,width=420,height=420');
	NewWin.document.clear();
	NewWin.document.write('<body bgcolor=#313246>');
	NewWin.document.write('<img src=' +FileName+ ' border=0>');
	NewWin.document.title= 'Big Picture';
	NewWin.document.close();
	NewWin.self.focus();
}

function Pop_up(FileName)
{
	var NewWin = window.open(FileName, 'Tablo', 'toolbar=no,directories=no,status=yes,scrollbars=no,menubar=no,width=970,height=420');
	NewWin.document.write('<body bgcolor=#313246>');
	NewWin.document.title= 'Tablo';
	NewWin.document.close();
	NewWin.self.focus();
}
