I am currectly using this to protect movies in my members area from hotlinking and bookmarking
	Code:
	<SCRIPT LANGUAGE="javascript">document.cookie = "id=valid; path=/"</SCRIPT>
 RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://([a-z0-9-]+\.)*YOURSITE.com/ [NC]
RewriteCond %{HTTP_REFERER} !^http://([a-z0-9-]+\.)*cyberavs.com/ [NC]
RewriteCond %{HTTP_COOKIE} !(^|(.+;)*)id=valid(;.*|$) 
RewriteRule /* http://%{HTTP_HOST}/ [R,L]
My problem is now I want to be able to use those same movies in another members area on another domain. Doing this with images is easy but I have no idea how to make it work for movies. Anybody know what I need to add to my .htaccess to make this work
Thanks