///////////////////////////////////////////////////////////////////////////////
//
// File: flashpopper.js
//
// Copyright: (c) 2000 by Kamizo-Design
// 
///////////////////////////////////////////////////////////////////////////////


if (plattform == 'mac')
{
	var pop_adj_width = 20;
	var pop_adj_height = 35;
}
else
{
	var pop_adj_width = 12
	var pop_adj_height = 30;
}

var pop_width = (screen.availHeight - pop_adj_height) / 3 * 4;

if (browserName == 'ie')
{
	var pop_options = 'scrollbars=0,fullscreen=yes';
	pop_pos_adj = 0;
	var flash = 2;
	
}
else

{
	var pop_options = 'hotkeys=no,menubar=no,resizable=no,status=no,width='+pop_width+',height='+(screen.availHeight - pop_adj_height);
	
	if (browserName == 'ns')
	{
		var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0);
		pop_pos_adj = (screen.availWidth - pop_width) / 2;
					
		if (plugin &&  parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >= 5)
		{
			var flash = 1;
		}
		else
		{
			var flash = 0;
		}
	}
}
						
function dmt ()
{
		var win;
                win= window.open ('dreamtime.html', 'dmt', pop_options);
		win.moveTo(pop_pos_adj,0);
	}

						
function forum ()
{
		var win;
                win= window.open ('forum.html', 'forum', pop_options);
		win.moveTo(pop_pos_adj,0);
	}

