/* auteur: SIWEB */
/* Date de création: 18/11/2005 */


function view(o) {
	o.style.cursor = 'pointer';
	var sitem = document.getElementById("ss" + o.id);
	sitem.style.visibility = 'visible' ;
}


function hide(o) {
	//o.style.cursor = 'pointer';
	var sitem = document.getElementById("ss" + o.id);
	sitem.style.visibility = 'hidden' ;
}

function open_art (arnum) {
	frmART = window.open('sc_detail.php?ArNum='+arnum, 'frmArt', 'width=500, height=500, scrollbars=1, resizable=1');
	frmART.focus();
}
