/* author: gilbert colobanea */
/* Creation date: 13.03.2003 */
function browseWindow( ele,x,y) {
	if( x == null){ x = 480;}
	if( y == null){ y = 360;}
	bWin = window.open(ele,'browseWin','noresizable,width='+x+',height='+y+', screenX=200, screenY=100');
	bWin.focus();
}