
function InitBlestshoppen ( )
{
	if ( typeof ( BlestBoxSet ) != 'undefined' )
	{
		// Vedtekter		
		var wm = document.getElementById ( 'WebshopOutput__' );
		if ( !wm ) wm = document.getElementById ( 'WebModule__' );
		
		var base = document.getElementsByTagName ( 'base' );
		base = base[ 0 ].href;
		
		// Set some blestbox options
		BlestBoxSet ( 'background-opacity', 0.4 );
		BlestBoxSet ( 'graphics-path', base + 'gfx' );
		BlestBoxSet ( 'background-color', '#000' );
		BlestBoxSet ( 'shadowbackground-color', '#000' );
		BlestBoxSet ( 'framebackground-color', '#000' );
		BlestBoxSet ( 'page-width', 640 );
		BlestBoxSet ( 'page-height', 500 );
	}
	else
	{
		setTimeout ( 'InitBlestshoppen ( )', 50 );
	}
}
InitBlestshoppen ( );

