
function popupLimitedEdition( key, imgwidth, imgheight){

	var popup = window.open(
		'limitededitionpopup.php?id=' + key,
		'dalegardinerlimitedpopup',
		'height=' + (imgheight+130) + ',width=' + (imgwidth+25) + ',status=no,toolbar=no,location=no,scrollbars=yes,resizable=yes'
	);
	
	popup.focus();
}

function popupLibrary( key, category, imgwidth, imgheight ){

	winWidth = Math.max( imgwidth , 280 );
	winHeight = Math.max( imgheight + 100 , 400 );

	var popup = window.open(
		'librarypopup.php?id=' + key + '&category=' + category,
		'dalegardinerlibrarypopup',
		'height=' + winHeight + ',width=' + winWidth + ',status=no,toolbar=no,location=no,scrollbars=no,resizable=yes'
	);
	
	popup.focus();
}

