function OpenWindow( sUri, iWidth, iHeight )
{
	var sWindowName = 'win' + Math.floor( Math.random()*1000 )
	var iRealWidth = iWidth ? iWidth : 600
	var iRealHeight = iHeight ? iHeight : screen.height - 300

	var iLeft = Math.round( (screen.width-iRealWidth)/2 )
	var iTop =  Math.round( (screen.height-iRealHeight)/2 ) - 35

	var sWindowOptions = 'status=yes,menubar=no,toolbar=no'
	sWindowOptions += ',resizable=yes,scrollbars=yes,location=no'
	sWindowOptions += ',width='  + iRealWidth
	sWindowOptions += ',height=' + iRealHeight
	sWindowOptions += ',left='   + iLeft
	sWindowOptions += ',top='    + iTop

	var oWindow = window.open( sUri, sWindowName, sWindowOptions )
	oWindow.focus()

	return oWindow
}

function OpenWindowFlash( sUri, iWidth, iHeight, sTitle, sBase )
{
	var sWindowName = 'win' + Math.floor( Math.random()*1000 )
	var iRealWidth = iWidth ? iWidth : 600
	var iRealHeight = iHeight ? iHeight : screen.height - 300

	var iLeft = Math.round( (screen.width-iRealWidth)/2 )
	var iTop =  Math.round( (screen.height-iRealHeight)/2 ) - 35

	var sWindowOptions = 'status=yes,menubar=no,toolbar=no'
	sWindowOptions += ',resizable=no,scrollbars=no,location=no'
	sWindowOptions += ',width='  + iRealWidth
	sWindowOptions += ',height=' + iRealHeight
	sWindowOptions += ',left='   + iLeft
	sWindowOptions += ',top='    + iTop

	var oWindow = window.open( sUri, sWindowName, sWindowOptions, sTitle, sBase )
	oWindow.focus()
	oWindow.document.open()
	oWindow.document.writeln('<html>')
	oWindow.document.writeln('<head>')
	oWindow.document.writeln('<title>'+ sTitle +'</title>')
	oWindow.document.writeln('</head>')
	oWindow.document.writeln('<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">')
	oWindow.document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%">')
	oWindow.document.writeln('<PARAM NAME="BASE" VALUE="'+ sBase + '">')	
	oWindow.document.writeln('<param name="movie" value="'+ sUri + '">')
	oWindow.document.writeln('<param name="quality" value="high">')
	oWindow.document.writeln('<param name="bgcolor" value="white">')
	oWindow.document.writeln('<embed src="'+ sUri + '" quality="high" bgcolor="white" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="100%" height="100%" BASE="'+ sBase + '"></embed>')
	oWindow.document.writeln('</object>')
	oWindow.document.writeln('</html>')
	oWindow.document.close()
	
	return oWindow
}