<!--
//-------------------------------------------------------------------
//
//	popup.js			Javascript popup function
//
//	Rev	Date			Comment
//	---	----			-------
//	1	25-Oct-2011		First development version - from pdb_shop.js
//
//	Copyright (c) 2011 Custom Internet Limited
//
//  Title to this software remains with Custom Internet Limited.  The customer is granted a 
//  non-exclusive right to use the software on the web site for which it is supplied.  
//  Custom Internet Limited retains the sole right to adapt or re-use the software for any 
//  other purpose, and (except as documented in the installation guide and configuration files) 
//  the customer may not modify, adapt, reverse engineer or re-use the software for any other purpose. 
//
//-------------------------------------------------------------------

function SB_PopUp(blox)
	{
	sizeValue='width=500,height=600,resizable=yes,scrollbars=yes' ;
	infoRef = blox;
	packWin=open(infoRef, 'sb_display', sizeValue);
	return(false) ;
	}

// -->
