function popUp(sURL, iHeight, iWidth)
{
	var newwin;
	newwin=window.open(sURL,'name','height='+iHeight+',width='+iWidth+',toolbar=0,menubar=0,scrollbar=0,resizable=0,top=75,left=200');
	if (window.focus) {
		newwin.focus()
	}
}

function swapImage(iImageDir, sName) {
	var imagedir = ""
	// iImageDir 1 = Wedding, 2 = Model, 3 = Family
	switch(iImageDir) {
		case 1: imagedir = "../images/WeddingGallery/WeddingFull/";
		break;
		case 2: imagedir = "../images/ModelGallery/ModelFull/";
		break;
		case 3: imagedir = "../images/FamilyGallery/FamilyFull/";
		break;
		default: imagedir = "";
	}				
	
	parent.document.images.targetimage.src = imagedir + sName;
}
