/* Popup code */
function launchNewsFlash( myurl ) {
     Width = 700;
	 Height = 410;
     LeftPosition = (screen.width) ? (screen.width-Width)/2 : 0;
     TopPosition = (screen.height) ? (screen.height-Height)/2 : 0;
     settings ='height='+Height+',width='+Width+',top='+TopPosition+',left='+LeftPosition+',menubar=no,toolbar=no,taskbar==no,scrollbars=no,resizable=no,location=no,showmenu=no'
     new_win = window.open(myurl,"NewsFlash",settings)	 
}
