/**
 * davronline.co.uk/public_html/jscript/general.js
 *
 * @package LiquidCommerce
 * @version 1.0a
 * @copyright Copyright &copy; 2004, Liquid Light Digital Ltd.
 * @author Patrick Heath <info@liquidlight.co.uk>
 * @license Site Software Licence.  See http://www.liquidlight.co.uk/licence-site.php for more information.
 * @created 2004-05-10
 */
<!--
//####### OPEN A MODAL WINDOW #######
function openModal(n,u,w,h,s) {
	winHandle = window.open(u,n,"width=" + w + ",height="+ h + ",screenX=20,screenY=15,top=20,left=15,scrollbars=" + s + ",resizable=yes");
	winHandle.focus();
}
function cycleImages( total, display ) {
	for ( i=1; i < total + 1; i++ ) {
		document.getElementById('image' + i).style.display='none';
	}
	document.getElementById('image' + display ).style.display='block';
}
// -->
