// JavaScript Document
function showFullSize(casa,nr){ 
	openPictureWindow('Images/CaseAmvic/'+casa+'/'+casa+''+nr+'M.jpg', 640, 498, 'Full Size Image - Casa ' + casa); 
} 

function showFullSizeOther(baza,imagine){ 
	openPictureWindow('Images/'+baza+'/'+imagine+'M.jpg', 640, 498, 'Full Size Image'); 
} 

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="640" border="0" cellspacing="0" cellpadding="0" height="498">');
	newWindow.document.write('<td width="519" height="480" colspan="2">');
	newWindow.document.write('<IMG SRC='+imageName+' WIDTH=640 HEIGHT=480 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>');	
} 

function showFullSize2(casa,nr){ 
	openPictureWindow2('Images/CaseAmvic/'+casa+'/Plan'+casa+''+nr+'M.jpg', 480, 498, 'Full Size Image - Plan Casa ' + casa); 
} 

function openPictureWindow2(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="480" border="0" cellspacing="0" cellpadding="0" height="498">');
	newWindow.document.write('<td width="519" height="480" colspan="2">');
	newWindow.document.write('<IMG SRC='+imageName+' WIDTH=480 HEIGHT=480 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>');	
} 
