sel_img = '';

function showBigImg(src, id, className)
{
	document.getElementById('main_img').src = src;
	document.getElementById(id).className = className;
	
	if(sel_img)
	{
		document.getElementById(sel_img).className = 'not_sel_img';
	}
	
	sel_img = id;
}

function createFlashControl( elemId, clsID, codebase, width, height, path, id, showBehind)
{
	elem = document.getElementById(elemId);
	var innerhtml;
	innerhtml = '<object';	
	innerhtml += 'classid="clsid:' +clsID+ '" ' +
							'codebase="' +codebase+ '" ' +
							'id="' +id+ '" ' +
							'width="' +width+ '" ' +
							'height="' +height+ '">';
	innerhtml += '<param name="movie" value="' +path+ '">';
	innerhtml += '<param name="quality" value="high">';
	innerhtml += '<param name="bgcolor" value="#000000">';
	innerhtml += '<param name="allowScriptAccess" value="sameDomain">';
	innerhtml += '<param name="autoStart" value="-1">';
	innerhtml += '<param name="wmode" value="transparent">';
	innerhtml += '<embed src="' +path+ '" ';	
	innerhtml += 		'quality="high" ' +
						'wmode="transparent" ' +
						'pluginspage="http://www.macromedia.com/go/getflashplayer" ' +
						'type="application/x-shockwave-flash" ' +
						'width="' +width+ '" ' +
						'height="' +height+ '"></embed>';
	innerhtml += '</object>';

	elem.innerHTML = innerhtml;
}