function showImage( id, width, height ) {
	newwindow = window.open( "/viewimagelarge/" + id, 'image'+ id, "location=0,scrollbars=0,status=0,width="+ width +",height="+ height);
	if (window.focus) {newwindow.focus()}
}

function showVideo(id, player) {
    /* player options 'quicktime', 'windows_media' */
    newwindow = window.open( "/video/popup/" + player + "/" + id, 'player', "location=0,scrollbars=1,status=0,width=390,height=500" );
	if (window.focus) {newwindow.focus()}
}