
//''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
//'                                                                '
//'   source       :   userprocs.js                                 '
//'   Description  :   included in sse.inc. user procedures        '
//'                                                                '
//'                                                                '
//'   Cerium content manager (based on the Sellenger site engine) 									 '
//'	(c) 1997-2007 Jos Verhoeff, cerium             '
//'   For more information http://www.cerium.nl              '
//'                                                                '
//'                                                                '
//''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

function flvpopup(map,mname,width,height) 
{
	var intIndexOfMatch = mname.indexOf( " " );
	while (intIndexOfMatch != -1){
		mname = mname.replace( " ", "%20" )
		intIndexOfMatch = mname.indexOf( " " );
	}
	var win1=window.open('/cerium/popup_flvalbum.asp?map='+ map + '&mov='+mname+'.flv&width='+width+'&height='+height,'movie','width='+ eval(width+20) + ',height='+ eval(height+40) + ',menubar=no,scrollbars=no,toolbar=no,resizable=no')
	win1.focus();
}

function popup(src,width,height) 
{
	var win1=window.open(src,'pop','width='+ eval(width) + ',height='+ eval(height) + ',status=no,titlebar=no,menubar=no,scrollbars=no,toolbar=no,resizable=no')
	win1.focus();
}