﻿// JScript File

function OpenPlan()
    {
    divLargePlan.style.display = 'block';
    }
    
function ClosePlan()
    {
    divLargePlan.style.display = 'none';
    }
    
function OpenMap(img)
	  {
	  
	  document.all('imgLargeMap').src = 'images/' + img;
	  
	  divLargeMap.style.display = 'block';
	  //divLargeMap.style.left = window.event.x+document.body.scrollLeft;
	  //divLargeMap.style.top = window.event.y+document.body.scrollTop;
	  
	  var browser = navigator.appName;
	  
	  // alert(browser);
	  
	  var tmpX = 0;
  	var tmpY = 0;
	  
	  if (browser == "Microsoft Internet Explorer")	
	    {
			var tmpX = window.event.x+document.body.scrollLeft;
  		var tmpY = (window.event.y+document.body.scrollTop) - 40;
			}	
 		else 	
 		  {
    	var tmpX = 14;
			var tmpY = 14;
  		} 
  		
  		divLargeMap.style.left = tmpX;
  		divLargeMap.style.top = tmpY;
  		
  		
	  }
  	
function CloseMap()
	  {
	  divLargeMap.style.display = 'none';
	  }
    
function winOpen(img)
	  {
	  newWin = window.open(img, '_blank', 'width=348 height=250 top=10 left=10');
	  newWin.document.write('<title>&copy; EdenLiving</title>');

	  newWin.document.write('<body style="margin: 0px;">');
	  newWin.document.write('<div align="center"><img src="' + img + '"></div>');
	  newWin.document.write('<div style="background-color: #353568; text-align: right; padding: 4px 8px 0px 0px; height: 20px;">');
	  newWin.document.write('<a style="padding-left: 5px; color: #ffffff; font-family: verdana; font-size: 7.5pt;" href="javascript:window.close()">CLOSE</a>');
	  newWin.document.write('</div>');
	  newWin.document.write('</body>');
	  }
