// JavaScript Document

function openPicWin(id,width,height){ 
			window.open( 'picwin.php?id='+id, 'picwin', 'width='+width+',height='+height+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0' );
}

function openJuke(){
			window.open( 'juke/juke.php', 'jukeWin', 'width=400,height=150,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0' );
}

function showNewsPic(){
			if(document.newsPic.style.display != 'block'){
				document.newsPic.style.display = 'block';
			}
			else{
				document.newsPic.style.display = 'none';
			}
}
