function ShowcaseWin(imageName){
    var Photo_pop;
	imgtag = "<img src='"+imageName+"'>";
    Photo_pop=window.open("","Photo","width=400,height=400,scrollbars=no,location=no,menubar=no"); 
    Photo_pop.document.open();
    Photo_pop.document.write('<html><head><title>:: C21 :: Property showcase</title>');
    Photo_pop.document.write('</head>');
    Photo_pop.document.write('<body bgcolor="#ffffff" leftmargin="0" marginheight="0" marginwidth="0" topmargin="0">');
    Photo_pop.document.write('<center>');	
	Photo_pop.document.write('<img src="images/popwin_bar.gif" width="400" height="10">');
    Photo_pop.document.write(imgtag);
    Photo_pop.document.write('</center>');		
    Photo_pop.document.write('</body>');
    Photo_pop.document.write('</html>');
    Photo_pop.document.close();
}

function ShowcaseFP_Win(imageSet,widthSet){
    var Photo_pop;
	imgtag = "<img src='"+imageSet+"' width='"+widthSet+"'>";
    Photo_pop=window.open("","Floorplan","width=400,height=600,scrollbars=yes,location=no,menubar=no"); 
    Photo_pop.document.open();
    Photo_pop.document.write('<html><head><title>:: C21 :: Property showcase</title>');
    Photo_pop.document.write('</head>');
    Photo_pop.document.write('<body bgcolor="#ffffff" leftmargin="0" marginheight="0" marginwidth="0" topmargin="0">');
	Photo_pop.document.write('<img src="images/popwin_bar.gif" width="400" height="10">');
    Photo_pop.document.write(imgtag);
    Photo_pop.document.write('</body>');
    Photo_pop.document.write('</html>');
    Photo_pop.document.close();
}