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