
function showbigimg(pic,message,x,y)
{
  newwin=window.open(pic,'newwin','width='+x+',height='+y+'toolbar=no')
  newwin.document.open();
  newwin.document.write('<html><head><title>Home Staging Montreal</title></head>');
  newwin.document.write('<body bgcolor="#000">');
  newwin.document.write('<a style="float:right;font:arial,10px;color:#369;margin:0 0 10px 0;padding:0;" href="javascript:window.close()">Close</a>');
  newwin.document.write('<h4 style="color:#fff;margin:0 0 10px 0;padding:0;">'+message+'</h4>');
  newwin.document.write('<img src="'+pic+'" alt="'+message+'">');
  newwin.document.write('</body></html>');
  newwin.moveTo(screen.width/2-x/2,130);
}
				

