﻿var sWidth = screen.width;
var sHeight = screen.height;
			
/*function openImage (which,wN,theW,theH) {		// opens new window
	switch (which) {
		case 'home':
			var width =  theW + 200;
			var height =  theH + 200;			
			var theX = sWidth/2 - width/2
			var theY = sHeight/2 - height/2 - 100;
			newWindow = window.open('images/home/big/bigImage.php?id='+wN+'&h='+theH+'&w='+theW+'', 'Dorit_Saphir', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width='+width+',height='+height+',left='+theX+', top='+theY+'');
			break;
	}	
}*/

var allOfThem;

function openImage (which,wN,theW,theH) {		// opens inside DIV
	switch (which) {
		case 'home':
			var width =  theW;
			var height =  theH;	
			allOfThem = document.getElementById("homeGallery").innerHTML;
			document.getElementById("homeGallery").innerHTML = "<div id='singleHolder'><a href='#' onclick='showAll(); return false;' ><img src='images/home/big/"+ wN + "_big2.jpg' border='0' /></a></div>";
			break;
	}	
}

function showAll () {
	document.getElementById("homeGallery").innerHTML = allOfThem;
}