function insideIframe()
{
	return top != self;
}

function adaptMovieSize(width, height)
{
	height += 20;
	width += 10;
	
	jq('object').attr('width', width);
	jq('embed').attr('width', width);
	
	jq('object').attr('height', height);
	jq('embed').attr('height', height);
	
	//alert(height);
	//alert(width);
	
	jq('object').attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');
}
