function slideShowWin( url ) {

	var aWin = window.open( url, 'slideShowWin', 'width=450,height=500,resizable=0,scrollbars=no' );

	aWin.focus();	

}



function popWin( url, theWidth, theHeight  ) {

	var aWin = window.open( url, 'popWin', 'width=' + theWidth +',height=' + theHeight + ',resizable=0,scrollbars=no' );

	aWin.focus();		

}