// Get an object reference to the element object with the passed ID


function emxGetElementById(e){
	if(typeof(e)!='string') return e;
	if(document.getElementById) e=document.getElementById(e);
	else if(document.all) e=document.all[e];
	else e=null;
	return e;
}
function getBigImage(eid,imgPath){
	emxGetElementById('slideTarget').src = imgPath
	// if(emxGetElementById('linkLargeImage')){
		// emxGetElementById('linkLargeImage').href = imgPath
	// }
}

function getLargeImage(eid,imgPath){
	showbox('largePhotoDiv');
	mainpath = emxGetElementById('slideTarget').src;
	largePath = mainpath.replace ("main", "large");
	emxGetElementById('largePhotoImg').src = largePath;
}

function getLargeImageNoFS(eid,imgPath){
	showbox('largePhotoDiv');
	mainpath = emxGetElementById('imgTargetNoFS').src;
	largePath = mainpath.replace ("main", "large");
	emxGetElementById('largePhotoImg').src = largePath;
}

window.onload=function(){
	new popUp(50 , 100 , 823 , 580 , "largePhotoDiv" , "<img id=\"largePhotoImg\" src=\"\">" , "white" , "black" , "10pt sans-serif" , "Remodeled Homes Tour" , "#0F72BB" , "white" , "lightgrey", "lightgrey" , "white" , true , true , true , true , false , false , 'images/min.gif' , 'images/max.gif' , 'images/close.gif' , 'images/resize.gif');
	hidebox('largePhotoDiv');
}


