// Copyright 2006, 2009 Factor of 4, LLC -- www.factorof4.com
// All Rights Reserved.
//
// Version 2009-03-03 MPG

// This script support enlarged image popups in correctly sized windows.
// popupl = popup landscape 
// popupp = popup portrait
// popupw = popup pan (wide) photo


// Usage: <a href="javascript:popupx('images/image.jpg','600')">
//                    <img src="images/image-th.jpg" alt="" border="0"></a>


function popupl(imageName, actualHeight) {
			features = 'resizable,scrollbars,width=840,height=' + actualHeight
				newWindow = window.open(imageName, 'popupWindow', features)
			}
			
function popupp(imageName, actualHeight) {
			features = 'resizable,scrollbars,width=560,height=' + actualHeight
				newWindow = window.open(imageName, 'popupWindow', features)
			}
			
function popupw(imageName, actualHeight) {
			features = 'resizable,scrollbars,width=840,height=' + actualHeight
				newWindow = window.open(imageName, 'popupWindow', features)
			}



