function ShowGalleryImageBig(imgSrc,imgDesc) {
	var theURL = '';
	var winName = 'Gallery';
	var features = 'width=533,height=410';
	var myWin = window.open(theURL,winName,features);
	myWin.document.open();
	myWin.document.writeln('<html>');
	myWin.document.writeln('<head><title>Gallery</title><link href="main.css" rel="stylesheet" type="text/css"></head>');
	myWin.document.writeln('<body text="#000000" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">');
	myWin.document.writeln('<table width="100%" cellspacing="0" cellpadding="0" border="0">');
	myWin.document.writeln(	'<tr><td align="center" height="25" class="heading">' + imgDesc + '</td></tr>');
	myWin.document.writeln('<tr><td align="center" class="heading"><img src="' + imgSrc + '"></td></tr>');
	myWin.document.writeln('</table></body>');
	myWin.document.writeln('</html>');
	myWin.document.close();
}

function ShowGalleryImageSmall(imgSrc,imgDesc) {
	var theURL = '';
	var winName = 'Gallery';
	var features = 'width=335,height=500';
	var myWin = window.open(theURL,winName,features);
	myWin.document.open();
	myWin.document.writeln('<html>');
	myWin.document.writeln('<head><title>Gallery</title><link href="main.css" rel="stylesheet" type="text/css"></head>');
	myWin.document.writeln('<body text="#000000" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">');
	myWin.document.writeln('<table width="100%" cellspacing="0" cellpadding="0" border="0">');
	myWin.document.writeln('<tr><td align="center" height="25" class="heading">' + imgDesc + '</td></tr>');
	myWin.document.writeln('<tr><td align="center"><img src="' + imgSrc + '"></td></tr>');
	myWin.document.writeln('</body>');
	myWin.document.writeln('</html>');
	myWin.document.close();
}

function ShowGalleryMediaBig(imgSrc,imgDesc) {
	var theURL = '';
	var winName = 'Gallery';
	var features = 'width=750,height=550';
	var myWin = window.open(theURL,winName,features);
	myWin.document.open();
	myWin.document.writeln('<html>');
	myWin.document.writeln('<head><title>Gallery</title><link href="main.css" rel="stylesheet" type="text/css"></head>');
	myWin.document.writeln('<body text="#000000" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" scroll="yes">');
	myWin.document.writeln('<table width="100%" cellspacing="0" cellpadding="0" border="0">');
	myWin.document.writeln(	'<tr><td align="center" height="25" class="heading">' + imgDesc + '</td></tr>');
	myWin.document.writeln('<tr><td align="center" class="heading"><img src="' + imgSrc + '"></td></tr>');
	myWin.document.writeln('</table></body>');
	myWin.document.writeln('</html>');
	myWin.document.close();
}

function ShowGalleryMediaSmall(imgSrc,imgDesc) {
	var theURL = '';
	var winName = 'Gallery';
	var features = 'width=500,height=600';
	var myWin = window.open(theURL,winName,features);
	myWin.document.open();
	myWin.document.writeln('<html>');
	myWin.document.writeln('<head><title>Gallery</title><link href="main.css" rel="stylesheet" type="text/css"></head>');
	myWin.document.writeln('<body text="#000000" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" scroll="yes">');
	myWin.document.writeln('<table width="100%" cellspacing="0" cellpadding="0" border="0">');
	myWin.document.writeln(	'<tr><td align="center" height="25" class="heading">' + imgDesc + '</td></tr>');
	myWin.document.writeln('<tr><td align="center" class="heading"><img src="' + imgSrc + '"></td></tr>');
	myWin.document.writeln('</table></body>');
	myWin.document.writeln('</html>');
	myWin.document.close();
}