
/**
 * ouvre une fenetre
 */
function winopen(src, width, height){

	if(!height)
		height = 300;
	if(!width)
		width = 200;
		
	var win = window.open(src,null, 'width='+width+',height='+height+',scrollbars=yes');
	    
}//end function

