function playAudio( sAudioFile ) {
	var sndObj = document.getElementById( "soundfile" );
	sndObj.src = sAudioFile;
	sndObj.play( );

//	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" type="video/quicktime" codebase="http://www.apple.com/qtactivex/qtplugin.cab"\n');
//	document.write('<param name="src" value="' + sAudioFile + '" />\n');
//	document.write('</object>\n');
}

function syncFrames( sAnchor, iCol, iCols, oCaller ) {
	var iCurrentColumn = top.getColumn( oCaller );

	if ( iCurrentColumn != -1 ) {
		iCurrentColumn = iCurrentColumn + 1 - iCol;

		if ( parent.sBrowser == "msie" ) {
			var iColWidth = parent.document.body.offsetWidth / 4 - 1;
			var iScrollX  = parent.document.body.scrollLeft;
		} else {
			var iColWidth = parent.window.innerWidth / 4;
			var iScrollX  = parent.pageXOffset;
		}

		var iMinScroll = ( iCurrentColumn - ( 4 - iCols ) - 1 ) * iColWidth;
		var iMaxScroll = ( iCurrentColumn - 1 ) * iColWidth;

		if ( iScrollX < iMinScroll ) top.scroll( iMinScroll, 0 );
		if ( iScrollX > iMaxScroll ) top.scroll( iMaxScroll, 0 );

		for ( var i=0; i<iCols; i++ ) {
			var sColName = "col";
			if ( i + iCurrentColumn < 10 ) sColName += "0" + ( i + iCurrentColumn )
			else sColName += ( i + iCurrentColumn );
			top.document.getElementById( sColName ).src = top.document.getElementById( sColName ).src.split( "#" )[ 0 ] + "#" + sAnchor;
		}

	}
}