function linkTargets(out){
	videos = document.getElementsByName('video');
	if (out){
		for (i = 0; i < videos.length; i++ )
			videos[i].target = '_blank';
		document.getElementById('new_win').className = 'selected';
		document.getElementById('same_win').className = 'choice';
	}else{
		for (i = 0; i < videos.length; i++ )
			videos[i].target = '_self';
		document.getElementById('same_win').className = 'selected';
		document.getElementById('new_win').className = 'choice';
	}
	return false;
} 


function picsTargets(out, href){
	page = document.getElementById('videopage');
	
	if (out == 2){
	        if(href != null)
	            document.location.href  = href;    
		page.className = 'videos pic2';
		document.getElementById('pic_normal').className = 'choice';
		document.getElementById('pic_large').className = 'selected';
		document.getElementById('pic_all').className = 'choice';
	}else if (out == 1){
	        if(href != null)
	            document.location.href  = href;
		page.className = 'videos pic1';
		document.getElementById('pic_normal').className = 'selected';
		document.getElementById('pic_large').className = 'choice';
		document.getElementById('pic_all').className = 'choice';
	}else if (out == 3){
		document.getElementById('pic_normal').className = 'choice';
		document.getElementById('pic_large').className = 'choice';
		document.getElementById('pic_all').className = 'selected';
		document.location.href  = href; 
	}
	return false;
} 

