// JavaScript Document
				
	
	
	function openVideo(link){
		
	var win = null;
	var mypage = link;
	var myname = "video";
	w = 320;
	h= 256;
	leftPos = (screen.width) ? (screen.width-w)/2 : 0;
	topPos = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+topPos+',left='+leftPos+',scrollbars=no';
	win = window.open(mypage,myname,settings)
}
	function openPic(link, width, height){
		
	var win = null;
	var mypage = link;
	var myname = "picture";
	w = width;
	h= height;
	
	settings = 'height='+h+',width='+w+',scrollbars=no';
	win = window.open(mypage,myname,settings)
}

	function openPicScroll(link, width, height){
		
	var win = null;
	var mypage = link;
	var myname = "picture";
	w = width;
	h= height;
	
	settings = 'height='+h+',width='+w+',scrollbars=yes,resizable=yes';
	win = window.open(mypage,myname,settings);
	
	
}