// JavaScript Document
function showFullSize(CeAmvic,nr){ 
	openPictureWindow('Images/'+CeAmvic+'/'+CeAmvic+''+nr+'_M.jpg', 400, 418, 'Amvic Group Images - Full size. ' ); 
} 

function openPictureWindow(imageName,imageWidth,imageHeight,alt) 
{ 
x=screen.availWidth
y=screen.availHeight
	newWindow = window.open("","newWindow","width="+imageWidth+", location=0,menubar=0,resizable=0,scrollbars=0,status=1,titlebar=1,toolbar=0,height="+imageHeight+',screenX=20,left='+(x-imageWidth)/2+",screenY=20,top="+(y-imageHeight-15)/2); 
	newWindow.document.open(); 
	newWindow.document.write('<HTML><HEAD><TITLE>'+alt+'</TITLE>');
	newWindow.document.write('</head>');
	newWindow.document.write('<body bgcolor="#000033" text="#000033" link="#000099" vlink="#000099" alink="#000066" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onBlur="self.focus()">'); 
	newWindow.document.write('<table width="400" height="418" border="0" cellspacing="0" cellpadding="0">');
	newWindow.document.write('<td width="400" height="400" colspan="2">');
	newWindow.document.write('<IMG SRC='+imageName+' WIDTH=400 HEIGHT=400 ALT="'+alt+'"></td>');
    newWindow.document.write('</tr>');
	newWindow.document.write('<tr bgcolor="#38406B">');
    newWindow.document.write('<td height="18" colspan="2" align="right" valign="middle" bgcolor="#000033" ><a href="javascript:window.close();"><font color="white" size="2" face="Arial, Helvetica, sans-serif">Inchide fereastra</font></a></td>');
	newWindow.document.write('</tr>');
	newWindow.document.write('</table>');	
} 
